blob: 4d83a39c55fde16255a51eafb26e19eb3a19be1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "base.html" %}
{% block title %}Details form {% endblock %}
{% block content %}
<h2>Please provide the following details.</h2>
<div class="alert alert-block">
<h4 class="alert-heading">Warning!</h4>
These details cannot be changed once entered.
</div>
<hr/>
{% load crispy_forms_tags %}
{% crispy form %}
{% endblock content %}
|