mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
455 B
23 lines
455 B
10 years ago
|
{% extends "base.html" %}
|
||
|
{% load i18n bootstrap3 %}
|
||
|
|
||
|
{% block title %}SAPL{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div id="content-main">
|
||
|
{# Display a form #}
|
||
|
<form method="post" class="form">
|
||
|
{% csrf_token %}
|
||
|
|
||
|
{% bootstrap_form form %}
|
||
|
|
||
|
{% buttons %}
|
||
|
<button type="submit" class="btn btn-primary">
|
||
|
{% bootstrap_icon "star" %} Submit
|
||
|
</button>
|
||
|
{% endbuttons %}
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|