SECRET_KEY = 'a8l7%06wr2k+3=%#*#@#rvop2mmzko)44%7k(zx%lls^ihm9^5'
# List of callables that know how to import templates from various sources.
-#TEMPLATE_LOADERS = (
-# ('django.template.loaders.cached.Loader', (
-# 'django.template.loaders.filesystem.Loader',
-# 'django.template.loaders.app_directories.Loader',
-# )),
-#)
+TEMPLATE_LOADERS = (
+ ('django.template.loaders.cached.Loader', (
+ 'django.template.loaders.filesystem.Loader',
+ 'django.template.loaders.app_directories.Loader',
+ )),
+)
MIDDLEWARE_CLASSES = (
font-size: 0.8125em;
border-top: 1px solid #FFF;
border-bottom: 1px solid #000;
- height: 29px;
- padding: 0em 0.5em 1em 0.5em;
+ height: 30px;
+ padding: 0em 0.5em 10px 0.5em;
margin-top: 2.5em;
}
#footer :link, #footer :visited { color: #FFF; }
#spacing td {
padding: 1em 1em 1em 0.3em;
- font-size: 0.9125em;
+ font-size: 0.8125em;
font-weight: normal;
}
<a id="telemeta_powered" href="{% telemeta_url %}" target="_blank"><img src="{% url telemeta-images "logo_mini_2.png" %}"
alt="Telemeta Powered"/></a>
<p class="left">
- {% trans "Powered by" %} <a href="{% telemeta_url %}" target="_blank"><strong>Telemeta {% telemeta_version %}</strong></a><br />
- {% trans "By" %} <a href="http://www.parisson.com/">Parisson SARL</a>
+ {% trans "Powered by" %} <a href="{% telemeta_url %}" target="_blank"><br /><strong>Telemeta {% telemeta_version %}</strong></a><br />
</p>
</td>
<td>
<p class="center">
- {% trans "Usage of the archives in the respect of cultural heritage of the original communities." %}
+
</p>
</td>
<td>
<p class="right">
- Copyright © {% current_year %} {% organization %}<br />
+ Copyright © {% current_year %} {% organization %} |
<a href="{% url telemeta-flatpage "legal_notices" %}">{% trans "Legal notices" %}</a>
</p>
</td>
<thead>
<tr><th>{% trans "Last Name"%}</th>
<th>{% trans "First Name"%}</th>
- <th>{% trans "User"%}</th>
<th>{% trans "IEJ"%}</th>
<th>{% trans "Procedure"%}</th>
<th>{% trans "Oral spe"%}</th>
<tbody id="spacing">
{% for user in users %}
<tr>
- <td>{{ user.last_name }}</td>
- <td>{{ user.first_name }}</td>
- <td><a href="{% url telemeta-profile-detail user.username %}">{{user.username}}</a></td>
+ <td><a href="{% url telemeta-profile-detail user.username %}">{{ user.last_name }}</a></td>
+ <td><a href="{% url telemeta-profile-detail user.username %}">{{ user.first_name }}</a></td>
{% if user.student.get %}
{% with user.student.get as student %}
</div>
-<div class="desk_large">
+<div class="desk_messages">
{% if user.is_staff %}
<div style="float:right;">
model = User
template_name='telemeta/users.html'
context_object_name = 'users'
- paginate_by = 12
+ paginate_by = 15
def get_queryset(self):
return User.objects.all().select_related(depth=1).order_by('last_name')