Admin Panel (#61)

Thank you Lee for this awesome, Bootstrap Admin Panel!
This commit is contained in:
Lee
2018-11-22 06:12:14 +00:00
committed by slawkens
parent 89f24c631c
commit 6dab50cbd8
58 changed files with 8636 additions and 1264 deletions

View File

@@ -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>