This commit is contained in:
adevopg
2024-11-12 09:17:08 +01:00
parent fe43f30207
commit 6b976046cb
211 changed files with 18030 additions and 0 deletions
@@ -0,0 +1,15 @@
{% extends "admin/change_list.html" %}
{% load i18n %}
{% block content %}
<h1>{% trans "Seleccionar Servidor" %}</h1>
<form method="post" action="{% url 'admin:home_serverselection_changelist' %}">
{% csrf_token %}
<select name="server_selection" required>
{% for server in servers %}
<option value="{{ server.0 }}">{{ server.1 }}</option>
{% endfor %}
</select>
<button type="submit">{% trans "Guardar selección" %}</button>
</form>
{% endblock %}