11 lines
308 B
HTML
11 lines
308 B
HTML
<!-- templates/settingsapp/form.html -->
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2 class="text-2xl mb-4">Ajustes de calificación</h2>
|
|
<form method="post" class="space-y-2">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="px-4 py-2 bg-amber-500 rounded">Guardar</button>
|
|
</form>
|
|
{% endblock %}
|