Skip to content
Snippets Groups Projects
Commit 66434f1f authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Add message if a dummy person has been linked to user

parent c9d2171a
No related branches found
No related tags found
1 merge request!240Resolve "(Super)User has no person"
Pipeline #1831 passed with warnings
......@@ -7,13 +7,23 @@
<div>
<i class="material-icons left">error</i>
<p>
{% 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 %}
</p>
{% if user.person.is_dummy %}
<p>
{% blocktrans %}
Your administrator account is not linked to any person. Therefore,
a dummy person has been linked to your account.
{% endblocktrans %}
</p>
{% else %}
<p>
{% 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 %}
</p>
{% endif %}
</div>
</div>
{% 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