Skip to content
Snippets Groups Projects
Commit ccd11cce authored by Julian's avatar Julian
Browse files

Render dummy/no person message banner in vuetify

parent 71525fc6
No related branches found
No related tags found
2 merge requests!1046Draft: Resolve "[3.0] Meta-issue for GraphQL back-end and Vue.js frontend",!1045Introduce Vuetify and GraphQL
Pipeline #71932 failed
{# -*- engine:django -*- #}
{% load i18n %}
{% if user.person.is_dummy or not user.person and not user.is_anonymous %}
<v-alert border="left" text type="error">
{% if user.person.is_dummy %}
{% blocktrans %}
Your administrator account is not linked to any person. Therefore,
a dummy person has been linked to your account.
{% endblocktrans %}
{% else %}
{% blocktrans %}
Your user account is not linked to a person. This means you
cannot access any school-related information. Please contact
the managers of AlekSIS at your school.
{% endblocktrans %}
{% endif %}
</v-alert>
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment