26 lines
483 B
HTML
26 lines
483 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "No Permissions" %}{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div style="text-align: center">
|
|
|
|
<h1 class="">{% trans 'No Permissions' %}</h1>
|
|
<br/>
|
|
|
|
|
|
<span>
|
|
{% trans 'You do not have any groups and therefor cannot use this application.' %}
|
|
{% trans 'Please contact your administrator.' %}
|
|
</span>
|
|
<br/>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|