513944b471f4e20b5aa59cb5efa1edf0f45d5208
[redakcja.git] / apps / organizations / templates / organizations / user_card.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3 {% load document_list from document_list %}
4
5 {% block inner_content %}
6
7     {% if card.user.pk == request.user.pk %}
8     <a style="float:right" class="btn btn-default" href="{% url 'organizations_user_edit' %}">{% trans "Edit" %}</a>
9     {% endif %}
10
11     {{ card.get_preview_html|safe }}
12
13     <h2>{% trans "Resources" %}</h2>
14     {% document_list user=card.user.pk %}
15
16
17
18 {% endblock %}