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/view_user.html

16 lines
285 B
HTML

{% extends "organization/base.html" %}
{% load i18n %}
{% block page-title %}
{% trans 'User details' %}
{% endblock %}
{% block appbar %}
<h2>{% trans "User details" %}</h2>
{% endblock %}
{% block content %}
{% include "organization/user.html" with user=object %}
{% endblock %}