This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
u-auth/uauth/organization/templates/organization/base.html

10 lines
344 B
HTML

{% extends "uauth/base.html" %}
{% load i18n static %}
{% block logout-url %}{% url "logout" %}{% endblock %}
{% block more-user-links %}
<a href="{% url "organization-home" organization.slug %}" class="icon-home-space">{% trans 'Homepage' %}</a>
<a href="{% url "manage" organization.slug %}">{% trans 'Management' %}</a>
{% endblock %}