{% extends theme("layout.html") %} {% import "utils.html" as utils with context %} {% import theme("itemviews.html") as itemviews with context %} {% import "snippets.html" as snippets with context %} {% set exists = storage.has_item(item_name) %} {% set footer_meta = snippets.footer_meta() %} {% block views %} {{ itemviews }} {% endblock %} {% block content %} {% block headline %} {% block item_summary %} {% if item.meta['summary'] %}
{{ _('Summary: {summary}').format(summary=item.meta['summary']) }}
{% endif %} {% endblock %} {% block rev_navigation %} {{ utils.rev_navigation(rev_navigation_ids_dates, fqname, view='frontend.show_item', item=item) }} {% endblock %} {% endblock %} {% block content_data %} {% if data_rendered %}
{{ data_rendered }}
{% endif %} {% endblock %} {% endblock %} {% block user_actions %} {{ local_panel_main(user_actions) }} {% endblock %} {% block item_actions %} {{ local_panel_main(item_actions) }} {% endblock %} {% block local_panel %}
{{ _("View Options") }}
{% if user_actions %}
{{ _("User Actions") }}
{% endif %} {% if item_actions %}
{{ _("Item Actions") }}
{% endif %} {% endblock %} {% block footer_meta %} {{ footer_meta }} {% endblock %} {% block options_for_javascript %} {%- if item_name and user.edit_on_doubleclick and user.may.write(item_name) -%}
{%- endif %} {%- if user.show_comments -%}
{%- endif %} {% endblock %}