{% extends "_layout.html" %} {% set active_page = 'context' %} {% set page_title = "Context: " + ehash %} {% block javascript %} {% include "javascript/_editor.html" %} {% endblock %} {% block content %} {% set context = api.context(ehash) %} {% if context %}
{{ _('Hash:') }}
{{ context.hash }}
{{ _('Location:') }}
{{ context.filename }}:{{ context.lineno }}
{{ context.context|safe }}

{{ _('Journal Entry') }}

{% with journal=context.journal %} {% include "_journal_table.html" %} {% endwith %} {% else %}

{{ _('No entry matches the given hash.') }}

{% endif %} {% endblock %}