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.
17 lines
425 B
17 lines
425 B
{% extends 'base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="col-lg-4 col-lg-offset-4">
|
|
<div class="reg">
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
<div class="content__title title__data">{{ title }}</div>
|
|
</div>
|
|
</div>
|
|
{% crispy form %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|
|
|