mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
16 lines
520 B
HTML
16 lines
520 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Configuration des dossiers d'inscriptions</h1>
|
|
<br>
|
|
<form action='{% url 'Subscriptions:index' %}' method="post">
|
|
{% csrf_token %}
|
|
<ul>
|
|
<div style="margin-bottom: 15px">
|
|
<label>Relance automatique :</label>
|
|
<input type="text" name="delaiRelance" value="{{ delaiRelance }}">
|
|
<label>secondes</label>
|
|
</div>
|
|
</ul>
|
|
<input class="btn" type="submit" value="Configurer" name="valider">
|
|
</form>
|
|
{% endblock %} |