read_base.html 850 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% ckan_extends %}

{# Remove access to see all users #}
{% block breadcrumb_content %}
  {{ h.build_nav('user.read', user.display_name|truncate(35), id=user.name) }}
{% endblock %}

{# Remove access to edit user profile #}
{% block content_action %}
{% endblock %}

{# Remove user API tokens and Activity Stream #}
{% block content_primary_nav %}
  {{ h.build_nav_icon('user.read', _('Datasets'), id=user.name, icon='sitemap') }}
{% endblock %}

{# Remove biography #}
{% block user_about %}
{% endblock %}

{% block user_info %}
      <div class="info">
        {% if is_myself %}
          <dl>
            <dt>{{ _('Email') }} <span class="label label-default" title="{{ _('This means only you can see this') }}">{{ _('Private') }}</span></dt>
            <dd>{{ user.email }}</dd>
          </dl>
        {% endif %}
      </div>
{% endblock %}