|
0
|
1 |
{% extends "site/layout/base.html" %} |
|
|
2 |
{% load com %} |
|
|
3 |
{% load i18n %} |
|
|
4 |
{% load local_perms %} |
|
|
5 |
|
|
|
6 |
{% block head_base %} |
|
|
7 |
{% endblock %} |
|
|
8 |
|
|
|
9 |
{% block content %} |
|
|
10 |
|
|
|
11 |
{% get_local_perm request can_manage_workspace as can_manage_workspace %} |
|
|
12 |
{% nb_texts as nb_texts %} |
|
|
13 |
{% nb_users as nb_users %} |
|
160
|
14 |
<h1 class="main_title"> |
|
|
15 |
{% if CONF.f_get_logo_url %} |
|
541
|
16 |
<div><a title="{% blocktrans %}back to workspace{% endblocktrans %}" class="title" href="{% url index %}"><img src="{{ CONF.f_get_logo_url }}" alt="logo" /></a></div> |
|
160
|
17 |
{% endif %} |
|
|
18 |
|
|
|
19 |
{% if CONF.workspace_name %} |
|
|
20 |
<a title="{% blocktrans %}back to workspace{% endblocktrans %}" class="title" href="{% url index %}">{{ CONF.workspace_name }}</a> |
|
|
21 |
{% endif %} |
|
|
22 |
</h1> |
|
|
23 |
|
|
|
24 |
{% if CONF.workspace_tagline %} |
|
|
25 |
<div> |
|
|
26 |
{{ CONF.workspace_tagline }}</div> |
|
|
27 |
{% endif %} |
|
0
|
28 |
|
|
|
29 |
<span class="metadata"> |
|
|
30 |
{% blocktrans count nb_texts as nb_texts %}{{ nb_texts }} text{% plural %}{{ nb_texts }} texts{% endblocktrans %}{% if can_manage_workspace %}, {% blocktrans count nb_users as nb_users %}{{ nb_users }} user{% plural %}{{ nb_users }} users{% endblocktrans %} |
|
|
31 |
{% endif %} |
|
|
32 |
</span> |
|
|
33 |
|
|
|
34 |
{% include "site/macros/main_tabs.html" %} |
|
|
35 |
|
|
|
36 |
{% block main %} |
|
|
37 |
{% endblock %} |
|
|
38 |
|
|
|
39 |
{% endblock %} |