Guest User

Untitled

a guest
Apr 27th, 2020
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. {% extends 'signup/home.html' %}
  2. {% load crispy_forms_tags %}
  3.  
  4. {% block title %} <title> Создать комментарий </title>{% endblock %}
  5.  
  6. {% block content %}
  7. {% if user.is_authenticated %}
  8. <div class="content-section">
  9. <form method="POST">
  10. {% csrf_token %}
  11. <fieldset class="form-group">
  12. <legend class="border-bottom mb-4">Создать Коментарий</legend>
  13. {{ form|crispy }}
  14.  
  15. </fieldset>
  16. <div class="form-group">
  17. <button class="btn btn-outline-info" type="submit">Создать</button>
  18. </div>
  19. </form>
  20. </div>
  21.  
  22. {% else %}
  23. <font color="red">
  24. <h3 align="center">Вы не вошли</h3>
  25. </font>
  26. {% endif %}
  27. {% endblock content %}
Advertisement
Add Comment
Please, Sign In to add comment