forms work and are saved to ldap correctly, added RFID form
This commit is contained in:
parent
0aade5be94
commit
8fdc6064fa
14 changed files with 317 additions and 240 deletions
18
account/templates/form_base.html
Normal file
18
account/templates/form_base.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{% extends "base.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block container %}
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<h2>{% block form_title %}{% endblock %}</h2>
|
||||
{% block form_description %}{% endblock %}
|
||||
|
||||
{% if message %}
|
||||
<div class="alert alert-success">{{ message }}</div>
|
||||
{% endif %}
|
||||
|
||||
{% block form_fields %}{% endblock form_fields %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{% endblock container %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue