detail.html 361 B

1234567891011121314
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h2>Заметка ID: {{ note.id }}</h2>
  4. <hr>
  5. <h3>{{ note.title }}</h3>
  6. <p>{{ note.text }}</p>
  7. <hr>
  8. <p>
  9. <a href="{% url 'notes:edit' slug=note.slug %}">Редактировать</a>
  10. </p>
  11. <p>
  12. <a href="{% url 'notes:delete' slug=note.slug %}">Удалить</a>
  13. </p>
  14. {% endblock content %}