mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-18 11:43:26 +02:00
Admin Panel (#61)
Thank you Lee for this awesome, Bootstrap Admin Panel!
This commit is contained in:
@@ -1,9 +1,28 @@
|
||||
Please choose template in which you want to edit menu items.<br/>
|
||||
<form method="post" action="?p=menus">
|
||||
<select name="template">
|
||||
{% for template in templates %}
|
||||
<option value="{{ template.template }}">{{ template.template }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input type="submit" class="button" value="Edit" />
|
||||
</form>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="box box-primary">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title">Templates</h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
<form method="post" action="?p=menus">
|
||||
<p>Please choose template in which you want to edit menu items.</p>
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<div class="input-group input-group-sm">
|
||||
<select id="template" name="template" class="form-control">
|
||||
{% for template in templates %}
|
||||
<option value="{{ template.template }}">{{ template.template }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<span class="input-group-btn">
|
||||
<button type="submit" type="button" class="btn btn-primary btn-flat">Edit</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user