2024-10-15 15:52:22 +00:00
|
|
|
{% 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>
|
2024-10-15 17:46:59 +00:00
|
|
|
<input type="text" id="{{ string }}" name="{{ string }}" value="{{ translation }}">
|
2024-10-15 15:52:22 +00:00
|
|
|
<br>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|