forked from DGNum/gestioCOF
74c3f07c66
- Lors de la création ou modification d'un article, il est possible de sélectionner une catégorie existante ou d'en créer une nouvelle. - Autorisations pour la création/modif d'article prises en compte correctement. Si l'utilisateur identifié n'a pas la permission add(ou change)_accoount, input password apparait et l'utilisateur est identifié temporairement pour la validation de l'ajout/modif.
17 lines
417 B
HTML
17 lines
417 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 }}
|
|
{% if not perms.kfet.add_article %}
|
|
<input type="password" name="KFETPASSWORD">
|
|
{% endif %}
|
|
<input type="submit" value="Enregistrer">
|
|
</form>
|
|
|
|
{% endblock %}
|