forked from DGNum/gestioCOF
27 lines
803 B
HTML
27 lines
803 B
HTML
{% extends 'kfet/base.html' %}
|
|
{% load widget_tweaks %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Fournisseur - Modification{% endblock %}
|
|
{% block content-header-title %}Fournisseur - Modification{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'kfet/base_messages.html' %}
|
|
|
|
<div class="row form-only">
|
|
<div class="col-sm-12 col-md-8 col-md-offset-2">
|
|
<div class="content-form">
|
|
<form submit="" method="post" class="form-horizontal">
|
|
{% csrf_token %}
|
|
{% include 'kfet/form_snippet.html' with form=form %}
|
|
{% if not perms.kfet.change_supplier %}
|
|
{% include 'kfet/form_authentication_snippet.html' %}
|
|
{% endif %}
|
|
{% include 'kfet/form_submit_snippet.html' with value="Mettre à jour" %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|