19 lines
522 B
HTML
19 lines
522 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{% block title %}{{ localize("translations") }}{% endblock %}</h1>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="post">
|
||
|
{% for language, data in strings.items() %}
|
||
|
<h2>{{ language }}</h2>
|
||
|
{% for string, translation in data.items() %}
|
||
|
<label for="{{ string }}">{{ string }}</label>
|
||
|
<input type="text" id="{{ string }}" value="{{ translation }}">
|
||
|
<br>
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
<button type="submit">Submit</button>
|
||
|
</form>
|
||
|
{% endblock %}
|