color: #000000;
font-weight: bold;
display: inline;
- font-size: 1.1em;
+ font-size: 1.2em;
}
#content h3 {
color: #000000;
#module-set .module h3 {
color: #FFF;
- font-size: 1em;
+ font-size: 1.1em;
font-weight: bold;
margin-top: 0.2em;
margin-bottom: 0.2em;
#module-set-left .module h3 {
color: #FFF;
- font-size: 1em;
+ font-size: 1.1em;
font-weight: bold;
}
border-radius: 8px 0px 0px 0px;
padding: 0em 0.8em 0em 0em;
font-weight: bold;
- font-size: 1.1em;
+ font-size: 1.2em;
}
.course_content {
<ul>
{% block courses %}
{% for training in trainings %}
-<li><a href="{% url teleforma-training-users training.id %}">{{ training.code }}</a></li>
+<li><a href="{% url teleforma-training-users training.id %}">{{ training.code|lower|capfirst }}</a></li>
{% endfor %}
{% endblock courses %}
</ul>
model = User
template_name='telemeta/users.html'
context_object_name = 'users'
- paginate_by = 15
+ paginate_by = 12
def get_queryset(self):
return User.objects.all().select_related(depth=1).order_by('last_name')