Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends 'signup/home.html' %}
- {% load crispy_forms_tags %}
- {% block title %} <title> Создать комментарий </title>{% endblock %}
- {% block content %}
- {% if user.is_authenticated %}
- <div class="content-section">
- <form method="POST">
- {% csrf_token %}
- <fieldset class="form-group">
- <legend class="border-bottom mb-4">Создать Коментарий</legend>
- {{ form|crispy }}
- </fieldset>
- <div class="form-group">
- <button class="btn btn-outline-info" type="submit">Создать</button>
- </div>
- </form>
- </div>
- {% else %}
- <font color="red">
- <h3 align="center">Вы не вошли</h3>
- </font>
- {% endif %}
- {% endblock content %}
Advertisement
Add Comment
Please, Sign In to add comment