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.
14 lines
346 B
14 lines
346 B
{% extends 'base.html' %}
|
|
{% load bootstrap4 %}
|
|
{% block title %} - {{title}}{%endblock%}
|
|
{% block content %}
|
|
<h3>{{title}}</h3>
|
|
<form action="" method="post" class="form">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button class="btn btn-outline-primary"><i class="fa fa-star"></i> {{validate}}</button>
|
|
</form>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
{% endblock %}
|
|
|