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

19 lines
514 B
HTML

{% extends "uauth/base.html" %}
{% load i18n static %}
{% block css %}
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/jquery-ui.min.css" %}" />
{{ block.super }}
{% endblock %}
{% block extrascripts %}
<script src="{% static "js/jquery-ui.min.js" %}"></script>
{% endblock %}
{% block logout-url %}{% url "logout" %}{% endblock %}
{% block more-user-links %}
{{ block.super }}
<a href="{% url "manage-users" organization.slug %}">{% trans 'User management' %}</a>
{% endblock %}