Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. {% extends 'base.html' %}
  2.  
  3. {% block title %}{{article.article_title}}{% endblock %}
  4.  
  5. {% block content %}
  6.  
  7. <h2>{{article.article_title}}</h2>
  8.  
  9. <article>{{article.article_text}}</article>
  10.  
  11. <em>{{article.pub_date}}</em>
  12.  
  13. <hr>
  14. <form action="{% url 'articles:leave_comment' article.id %}" method="post"></form>
  15.  
  16. <hr>
  17.  
  18. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement