forked from DGNum/gestioCOF
- Template: Ajout d'un style "Sogé" (couleurs de la K-Fêt...) - K-Psul: Optimisation requête checkout data avec dernier relevé - K-Psul: Rework JS account et checkout data
14 lines
311 B
HTML
14 lines
311 B
HTML
{% extends 'kfet/base.html' %}
|
|
|
|
{% block title %}Nouvel article{% endblock %}
|
|
{% block content-header-title %}Création d'un article{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form submit="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Enregistrer">
|
|
</form>
|
|
|
|
{% endblock %}
|