KankenOnline/kanken_online/templates/translations.html
2024-10-15 18:46:59 +01:00

19 lines
542 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 }}" name="{{ string }}" value="{{ translation }}">
<br>
{% endfor %}
{% endfor %}
<button type="submit">Submit</button>
</form>
{% endblock %}