equal
deleted
inserted
replaced
|
1 {% extends "site/layout/base.html" %} |
|
2 {% load com %} |
|
3 {% load i18n %} |
|
4 |
|
5 {% block title %} |
|
6 {{ text.get_title }} |
|
7 {% endblock %} |
|
8 |
|
9 {% block head_base %} |
|
10 <script type="text/javascript" src="{% url django.views.i18n.javascript_catalog %}"></script> |
|
11 <link href="{% url text-feed text.key %}" title="{{ text.get_title }}" type="application/rss+xml" rel="alternate" /> |
|
12 {% endblock %} |
|
13 |
|
14 {% block content %} |
|
15 |
|
16 {% include "site/macros/text_actions.html" %} |
|
17 <a class="breadcrumbs" href="{% url index %}" title="Home">« {% blocktrans %}back to workspace{% endblocktrans %}</a> |
|
18 <h1 class="main_title_text"><a class="title" href="{% url text-view text.key %}">{{ text.get_title }}</a></h1> |
|
19 |
|
20 {% include "site/macros/text_meta.html" %} |
|
21 {% include "site/macros/text_tabs.html" %} |
|
22 |
|
23 {% block main %} |
|
24 {% endblock %} |
|
25 |
|
26 {% endblock %} |