summaryrefslogtreecommitdiff
path: root/ishtar/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/templates/base.html')
-rw-r--r--ishtar/templates/base.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/ishtar/templates/base.html b/ishtar/templates/base.html
index 2b2b440c8..e726cf782 100644
--- a/ishtar/templates/base.html
+++ b/ishtar/templates/base.html
@@ -37,15 +37,19 @@
<form method="post" action="{% url update-current-item %}">
<fieldset>
<legend>{% trans "Default items"%}</legend>
- <ul id='current_items'>
+ <table id='current_items'>
{% for lbl, model_name, items in current_menu %}
- <li><label for="current_{{model_name}}">{{lbl}}</label>
- <select id='current_{{model_name}}'>
- <option value=''>--</option>
- {% for val, label, selected in items %}<option value='{{val}}'{%if selected%} selected="selected"{%endif%}>{{label}}</option>
- {% endfor %}</select></li>
+ <tr>
+ <td><label for="current_{{model_name}}">{{lbl}}</label></td>
+ <td>
+ <select id='current_{{model_name}}'>
+ <option value=''>--</option>
+ {% for val, label, selected in items %}<option value='{{val}}'{%if selected%} selected="selected"{%endif%}>{{label}}</option>
+ {% endfor %}</select>
+ </td>
+ </tr>
{% endfor %}
- </ul>
+ </table>
</fieldset>
</form>
{% endif %}{% endblock %}