friwall/web/templates/config/index.html

20 lines
411 B
HTML
Raw Normal View History

2022-01-03 10:33:02 +00:00
{% extends 'base.html' %}
{% block content %}
<p>
Tu lahko urejate splošne nastavitve.
<form id="request" method="POST">
<table>
<tbody>
2022-01-03 10:33:02 +00:00
{% for name, value in settings.items() %}
<tr>
<td><label for="{{ name }}">{{ name }}</label>
<td><input id="{{ name }}" name="{{ name }}" value="{{ value }}" size="40" />
2022-01-03 10:33:02 +00:00
{% endfor %}
</table>
2022-01-03 10:33:02 +00:00
<p><button id="submit" type="submit">Shrani</button>
</form>
{% endblock %}