20 lines
411 B
HTML
20 lines
411 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<p>
|
|
Tu lahko urejate splošne nastavitve.
|
|
|
|
<form id="request" method="POST">
|
|
<table>
|
|
<tbody>
|
|
{% for name, value in settings.items() %}
|
|
<tr>
|
|
<td><label for="{{ name }}">{{ name }}</label>
|
|
<td><input id="{{ name }}" name="{{ name }}" value="{{ value }}" size="40" />
|
|
{% endfor %}
|
|
</table>
|
|
<p><button id="submit" type="submit">Shrani</button>
|
|
</form>
|
|
|
|
{% endblock %}
|