blog/webapp/templates/blog_post/_get.html

16 lines
758 B
HTML
Raw Normal View History

2020-07-08 14:36:13 +02:00
{% if "filename" not in skip_list %}
<li id="display-blog_post-filename"><strong>{{ _("filename") }}</strong>: {{ instance.filename }}</li>
{% endif %}
2020-07-13 11:54:16 +02:00
{% if "title" not in skip_list %}
<li id="display-blog_post-title"><strong>{{ _("title") }}</strong>: {{ instance.title }}</li>
{% endif %}
2020-07-08 14:36:13 +02:00
{% if "body" not in skip_list %}
<li id="display-blog_post-body"><strong>{{ _("body") }}</strong>: {{ instance.body }}</li>
2020-08-11 13:17:53 +02:00
{% endif %}
{% if "created_dt" not in skip_list %}
<li id="display-blog_post-created_dt"><strong>{{ _("created_dt") }}</strong>: {{ instance.created_dt }}</li>
{% endif %}
{% if "updated_dt" not in skip_list %}
<li id="display-blog_post-updated_dt"><strong>{{ _("updated_dt") }}</strong>: {{ instance.updated_dt }}</li>
2020-07-08 14:36:13 +02:00
{% endif %}