Guest User

questions_detail.html

a guest
Jul 12th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. {{ question.name }} - {{ block.super }}
  4. {% endblock title %}
  5.  
  6. {% block content %}
  7. <h1>{{ question.name }}</h1>
  8. <p>{{ question.description }} </p>
  9. <a href="{% url 'edit_question' slug=question.slug %}">
  10. Edit me!
  11. </a>
  12. {% endblock content %}
Add Comment
Please, Sign In to add comment