9 lines
436 B
HTML
9 lines
436 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<a href="{{ url_for('list_blog_post', uuid=instance.id) }}">{{ _("list") }}</a> |
|
|
<h2>{% include "blog_post/_title.html" %}</h2>
|
|
<a href="{{ url_for('update_blog_post', uuid=instance.id, _next=request.path) }}">{{ _("edit") }}</a> |
|
|
<a href="{{ url_for('delete_blog_post', uuid=instance.id) }}">{{ _("delete") }}</a>
|
|
{% include "blog_post/_get.html" %}
|
|
{% endblock %} |