2013-10-25 01:03:16 +02:00
|
|
|
{% 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-10-29 04:20:52 +01:00
|
|
|
<p class="leas">You are one of currently {{ number_of_members }}
|
|
|
|
|
c-base members.</p>
|
2013-10-29 18:51:04 +01:00
|
|
|
<p>{% blocktrans %}Here you can change some parameters of your
|
|
|
|
|
c-base member account.{% endblocktrans %}</p>
|
2013-10-25 01:03:16 +02:00
|
|
|
|
|
|
|
|
<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 />
|
2013-10-29 18:51:04 +01:00
|
|
|
<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>
|
2013-10-25 01:03:16 +02:00
|
|
|
<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>
|
|
|
|
|
|
2013-10-25 01:03:16 +02:00
|
|
|
<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
|
|
|
|
|
externe e-mail address please contact the c-base board
|
|
|
|
|
(<a href="mailto:vorstand@c-base.org">vorstand@c-base.org</a>).{% endblocktrans %}</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
{% trans "Your c-base member account balance:" %}
|
|
|
|
|
<a class="btn btn-small" href="https://vorstand.c-base.org/member/">{% trans "Check balance" %}</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock container %}
|