cbmi/account/templates/home.html

58 lines
2.3 KiB
HTML
Raw Normal View History

{% extends "member_base.html" %}
{% load i18n %}
{% block container %}
<div class="row">
<div class="span12">
<h2>{% trans "Welcome to the c-base member interface" %}</h2>
2013-12-01 00:47:24 +01:00
<p class="leas">{% blocktrans %}You are one of currently {{ number_of_members }}
c-base members.{% endblocktrans%}</p>
<p>{% blocktrans %}Here you can change some parameters of your
c-base member account.{% endblocktrans %}</p>
<h3>{% trans "Basic information about your account" %}</h3>
<ul>
<li>{% trans "Your user ID:" %}
<code>{{ member.uid }}</code></li>
<li>{% trans "Numeric user ID:" %}
<code>{{ member.uidNumber }}</code><br />
<span class="muted">{% blocktrans %}The numeric user ID can
be used to login with the vending machines and network
connected combination locks.{% endblocktrans %}</span></li>
<li>
{% trans "Your c-base e-mail address:" %}
<code>{{ member.mail }}</code>
</li>
</ul>
2013-10-26 20:06:42 +02:00
<h3>{% trans "Your group memberships" %}</h3>
{% trans "You are part of the following LDAP groups:" %}
<ul>
{% for group in groups %}
<li><span class="label label-info">{{ group }}</span></li>
{% endfor %}
</ul>
<h3>{% trans "Management information" %}</h3>
<ul>
<li>{% trans "Name:" %}
{{ member.displayName }}
</li>
<li>
{% trans "External e-mail address:" %}
{{ member.externalEmail }}<br>
<span class="muted">{% blocktrans %}The external e-mail address is used by the
board of c-base to reach you in cases where your c-base
address (see above) is not working. To change your
2013-12-01 00:47:24 +01:00
external e-mail address please contact the c-base board via {% endblocktrans %}
(<a href="mailto:cash@c-base.org">cash@c-base.org</a>).</span>
</li>
</ul>
</div>
</div>
2013-12-01 00:47:24 +01:00
{% endblock container %}