Fixed a lot of template bugs.

- agenda overview: Text align right for duration column.
- item summary slide: Show 'get_title_supplement' after each related agenda item.
- item detail view: Add ":" in button after item content_type
- projector: Show <hr> below title/subtitle line.
- motion view: Check manage permission for delete version button in version history table.
- motion detail view: Update version authorized badges and go to buttons.
- motion list: Link warning icon to newest version.
- assignment detail view: Added ballot paper pdf button.
- Group slide and overview: Show members.
- Use dynamic title column width in participants pdf.
- Fixed missing translations in user settings form.
- IE8/9 fix for projector template style.
- Style linebreak and border in h1 title with css.
This commit is contained in:
Emanuel Schuetze 2013-11-19 20:50:51 +01:00
parent 3d19ae7db2
commit 9aed1f764d
20 changed files with 93 additions and 65 deletions

View File

@ -54,7 +54,7 @@ ol.agenda_list {
} }
.agenda_list .openclose { width: 40px; float: left; min-height: 1px; } .agenda_list .openclose { width: 40px; float: left; min-height: 1px; }
.agenda_list .duration { width: 92px; float: right; min-height: 1px; padding-left: 5px; } .agenda_list .duration { width: 92px; float: right; min-height: 1px; padding-right: 25px; text-align: right; }
.agenda_list .manage { width: 200px; float: right; min-height: 1px; padding-left: 5px; } .agenda_list .manage { width: 200px; float: right; min-height: 1px; padding-left: 5px; }
.agenda_list .title { float: left; padding-left: 5px;} .agenda_list .title { float: left; padding-left: 5px;}
.agenda_list .optional { float: left; } .agenda_list .optional { float: left; }
@ -63,7 +63,7 @@ ol.agenda_list {
.agenda_list .optional { float: right; width: 208px; padding-left: 8px;} .agenda_list .optional { float: right; width: 208px; padding-left: 8px;}
#menu-overview .manage { width: 200px; } #menu-overview .manage { width: 200px; }
#menu-overview .duration { width: 75px; } #menu-overview .duration { width: 65px; text-align: right; padding-right: 19px;}
#menu-overview .optional { width: 200px; } #menu-overview .optional { width: 200px; }
@media screen and (max-width: 1000px) { @media screen and (max-width: 1000px) {

View File

@ -2,7 +2,6 @@
<h1> <h1>
{{ item }} {{ item }}
<hr>
</h1> </h1>
{% if item.text %} {% if item.text %}

View File

@ -15,11 +15,13 @@
margin-bottom: 0.5em;} margin-bottom: 0.5em;}
</style> </style>
<h1>{{ title }}</h1> <h1>
<h3> {{ title }}
<small>
{% trans 'List of speakers' %} {% trans 'List of speakers' %}
{% if item.speaker_list_closed %}(<span class="closed">{% trans 'closed' %}</span>){% endif %} {% if item.speaker_list_closed %}(<span class="closed">{% trans 'closed' %}</span>){% endif %}
</h3> </small>
</h1>
{% if list_of_speakers %} {% if list_of_speakers %}
<ul id="list_of_speakers"> <ul id="list_of_speakers">

View File

@ -1,9 +1,14 @@
{% load i18n %} {% load i18n %}
<h1>{% if title %}{{ title }}{% else %}{% trans "Agenda" %}{% endif %}</h1> <h1>
{% if title %}{{ title }}{% else %}{% trans "Agenda" %}{% endif %}
</h1>
<ul class="itemlist"> <ul class="itemlist">
{% for item in items %} {% for item in items %}
<li{% if item.closed %} class="closed" {% endif %}>{{ item }}</li> <li{% if item.closed %} class="closed" {% endif %}>
{{ item }}
<small>{{ item.get_title_supplement|safe }}</small>
</li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -28,11 +28,9 @@
{% if perms.agenda.can_manage_agenda %} {% if perms.agenda.can_manage_agenda %}
<div id="changed-order-message" style="display:none" class="alert alert-warning"> <div id="changed-order-message" style="display:none" class="alert alert-warning">
<button type="button" class="close" data-dismiss="alert">×</button> <button type="button" class="close" data-dismiss="alert">×</button>
<p>{% trans "Do you want to save the changed order of agenda items?" %}</p> {% trans "Do you want to save the changed order of agenda items?" %}<br>
<p> <button class="btn btn-mini" type="submit">{% trans 'Yes' %}</button>
<button class="btn" type="submit">{% trans 'Yes' %}</button> <a href="{% url 'item_overview' %}" class="btn btn-mini">{% trans 'No' %}</a>
<a href="{% url 'item_overview' %}" class="btn">{% trans 'No' %}</a>
</p>
</div> </div>
{% endif %} {% endif %}

View File

@ -46,7 +46,7 @@
{% if not item.content_object %} {% if not item.content_object %}
{{ item.text|safe }} {{ item.text|safe }}
{% else %} {% else %}
<a href="{{ item.content_object|absolute_url }}" class="btn btn-small">{% trans item.content_type.name %} {{ item.content_object }}</a> <a href="{{ item.content_object|absolute_url }}" class="btn btn-small">{% trans item.content_type.name %}: {{ item.content_object }}</a>
{% endif %} {% endif %}
</p> </p>

View File

@ -146,21 +146,13 @@
<h4>{% trans "Election results" %}</h4> <h4>{% trans "Election results" %}</h4>
{% if polls.exists %} {% if polls.exists %}
<table class="table table-striped table-bordered"> <table class="table table-striped table-bordered">
<tr>
<th></th>
{% with ballotnumber=polls.count %}
<th colspan="{{ ballotnumber|add:'1' }}" style="text-align: center;">
{% trans "Ballot" %}
</th>
{% endwith %}
</tr>
<tr> <tr>
<th>{% trans "Candidates" %}</th> <th>{% trans "Candidates" %}</th>
{% for poll in polls %} {% for poll in polls %}
<th style="white-space:nowrap;" class="span1"> <th style="white-space:nowrap;" class="span1">
{% if perms.assignment.can_manage_assignment %}<p>{% endif %}
{{ poll.get_ballot|ordinal|safe }} {% trans 'ballot' %} {{ poll.get_ballot|ordinal|safe }} {% trans 'ballot' %}
{% if perms.assignment.can_manage_assignment %} {% if perms.assignment.can_manage_assignment %}
<br>
<a class="publish_link btn btn-mini btn-danger {% if poll.published %}btn-primary{% endif %}" <a class="publish_link btn btn-mini btn-danger {% if poll.published %}btn-primary{% endif %}"
href="{% url 'assignment_poll_publish_status' poll.id %}" href="{% url 'assignment_poll_publish_status' poll.id %}"
rel="tooltip" data-original-title="{% trans 'Publish results' %}"> rel="tooltip" data-original-title="{% trans 'Publish results' %}">
@ -170,10 +162,15 @@
<i class="icon-unchecked-new"></i> <i class="icon-unchecked-new"></i>
{% endif %} {% endif %}
</a> </a>
</p>
<p class="text-center">
<a href="{% url 'assignment_poll_pdf' poll.id %}" class="btn btn-mini" target="_blank"
rel="tooltip" data-original-title="{% trans 'Ballot paper as PDF' %}"><i class="icon-print"></i></a>
<a href="{% url 'assignment_poll_view' poll.id %}" class="btn btn-mini" <a href="{% url 'assignment_poll_view' poll.id %}" class="btn btn-mini"
rel="tooltip" data-original-title="{% trans 'Edit' %}"><i class="icon-pencil"></i></a> rel="tooltip" data-original-title="{% trans 'Edit' %}"><i class="icon-pencil"></i></a>
<a href="{% url 'assignment_poll_delete' poll.id %}" class="btn btn-mini" <a href="{% url 'assignment_poll_delete' poll.id %}" class="btn btn-mini"
rel="tooltip" data-original-title="{% trans 'Delete' %}"><i class="icon-remove"></i></a> rel="tooltip" data-original-title="{% trans 'Delete' %}"><i class="icon-remove"></i></a>
</p>
{% endif %} {% endif %}
</th> </th>
{% endfor %} {% endfor %}

View File

@ -13,11 +13,9 @@
</div> </div>
<h1>{{ assignment }} <h1>{{ assignment }}
<br>
<small> <small>
{% trans "Election" %} {% trans "Election" %}
</small> </small>
<hr>
</h1> </h1>
{% if not assignment.candidates %} {% if not assignment.candidates %}

View File

@ -16,9 +16,18 @@
<h1> <h1>
{{ title }} {{ title }}
<br> <br>
<small>{% trans "Motion" %} {{ motion.identifier|default:'' }} <small>
{% trans "Motion" %} {{ motion.identifier|default:'' }}
{% if motion.versions.count > 1 %} {% if motion.versions.count > 1 %}
| {% trans "Version" %} {{ version.version_number }} | {% trans "Version" %} {{ version.version_number }}
{% if version == motion.active_version %}
<span class="badge badge-success"> {% trans 'This version is authorized' %}</span>
{% endif %}
{% if version.version_number != motion.active_version.version_number %}
<span class="label label-warning">
<i class="icon-warning-sign icon-white"></i> {% trans "This version is not authorized." %}
</span>
{% endif %}
{% endif %} {% endif %}
</small> </small>
<small class="pull-right"> <small class="pull-right">
@ -62,20 +71,17 @@
<div class="row-fluid"> <div class="row-fluid">
<div class="span8"> <div class="span8">
{# TODO: show only for workflow with versioning #} {# TODO: show only for workflow with versioning #}
{% with last_version=motion.get_last_version active_version=motion.get_active_version %} {% with last_version=motion.get_last_version %}
{% if version.version_number != last_version.version_number %} {% if version.version_number != motion.active_version.version_number %}
<p><span class="label label-warning"> <p>
<i class="icon-warning-sign icon-white"></i> {% trans "This is not the newest version." %} <a href="{{ motion.active_version|absolute_url }}" class="btn btn-small">{% trans "Go to the authorized version" %}
</span> (# {{ motion.active_version.version_number }})</a>
</p>
{% elif version.version_number != last_version.version_number %}
<p>
<a href="{{ last_version|absolute_url }}" class="btn btn-small">{% trans "Go to the newest version" %} <a href="{{ last_version|absolute_url }}" class="btn btn-small">{% trans "Go to the newest version" %}
(# {{ last_version.version_number }})</a></p> (# {{ last_version.version_number }})</a>
{% endif %} </p>
{% if version.version_number != active_version.version_number %}
<p><span class="label label-warning">
<i class="icon-warning-sign icon-white"></i> {% trans "This version is not authorized." %}
</span>
<a href="{{ active_version|absolute_url }}" class="btn btn-small">{% trans "Go to the authorized version" %}
(# {{ active_version.version_number }})</a></p>
{% endif %} {% endif %}
{% endwith %} {% endwith %}
@ -136,7 +142,7 @@
<a href="{{ version|absolute_url }}" title="{% trans 'Show' %}" class="btn btn-mini"> <a href="{{ version|absolute_url }}" title="{% trans 'Show' %}" class="btn btn-mini">
<i class="icon-search"></i> <i class="icon-search"></i>
</a> </a>
{% if version != motion.active_version %} {% if perms.motion.can_manage_motion and version != motion.active_version %}
<a href="{{ version|absolute_url:'delete' }}" title="{% trans 'Delete' %}" class="btn btn-mini"> <a href="{{ version|absolute_url:'delete' }}" title="{% trans 'Delete' %}" class="btn btn-mini">
<i class="icon-remove"></i> <i class="icon-remove"></i>
</a> </a>

View File

@ -70,7 +70,12 @@
</td> </td>
{% endwith %} {% endwith %}
{% endif %} {% endif %}
<td class="optional">{{ motion.get_last_version.creation_time }}</td> <td class="optional">{{ motion.get_last_version.creation_time }}
{% if motion.get_last_version.version_number != motion.active_version.version_number %}
<a href="{{ motion.get_last_version|absolute_url }}" class="label label-warning" rel="tooltip" data-original-title="{% trans 'There is a newer (unauthorized) version.' %}">
<i class="icon-warning-sign icon-white"></i>
</a>
{% endif %}</td>
<td> <td>
<span style="width: 1px; white-space: nowrap;"> <span style="width: 1px; white-space: nowrap;">
{% if perms.projector.can_manage_projector %} {% if perms.projector.can_manage_projector %}

View File

@ -55,12 +55,10 @@
<h1> <h1>
{{ motion.active_version.title }} {{ motion.active_version.title }}
<br>
<small> <small>
{% trans "Motion" %} {{ motion.identifier|default:'' }} {% trans "Motion" %} {{ motion.identifier|default:'' }}
{% if motion.get_active_version.version_number > 1 %} | {% trans 'Version' %} {{ motion.active_version.version_number }}{% endif %} {% if motion.get_active_version.version_number > 1 %} | {% trans 'Version' %} {{ motion.active_version.version_number }}{% endif %}
</small> </small>
<hr>
</h1> </h1>
<div class="text">{{ motion.active_version.text|safe }}</div> <div class="text">{{ motion.active_version.text|safe }}</div>

View File

@ -42,7 +42,7 @@ class UserUpdateForm(UserCreateForm):
user edits himself and removes the last group containing the permission user edits himself and removes the last group containing the permission
to manage participants. to manage participants.
""" """
user_name = forms.CharField() user_name = forms.CharField(label=ugettext_lazy('Username'))
""" """
Field to save the username. Field to save the username.
@ -145,7 +145,7 @@ class GroupForm(forms.ModelForm, CssClassMixin):
class UsersettingsForm(CssClassMixin, forms.ModelForm): class UsersettingsForm(CssClassMixin, forms.ModelForm):
user_name = forms.CharField() user_name = forms.CharField(label=ugettext_lazy('Username'))
""" """
Field to save the username. Field to save the username.
@ -153,7 +153,8 @@ class UsersettingsForm(CssClassMixin, forms.ModelForm):
allow whitespaces and umlauts. allow whitespaces and umlauts.
""" """
language = forms.ChoiceField(choices=settings.LANGUAGES) language = forms.ChoiceField(
choices=settings.LANGUAGES, label=ugettext_lazy('Language'))
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
kwargs['initial'] = kwargs.get('initial', {}) kwargs['initial'] = kwargs.get('initial', {})

View File

@ -46,7 +46,6 @@ def participants_to_pdf(pdf):
('ROWBACKGROUNDS', (0, 1), (-1, -1), ('ROWBACKGROUNDS', (0, 1), (-1, -1),
(colors.white, (.9, .9, .9)))]) (colors.white, (.9, .9, .9)))])
t._argW[0] = 0.75 * cm t._argW[0] = 0.75 * cm
t._argW[1] = 1 * cm
pdf.append(t) pdf.append(t)
return pdf return pdf

View File

@ -29,6 +29,7 @@
<tr> <tr>
<th class="mini_width">{% trans "ID" %}</th> <th class="mini_width">{% trans "ID" %}</th>
<th>{% trans "Group" %}</th> <th>{% trans "Group" %}</th>
<th>{% trans "Members" %}</th>
<th class="mini_width">{% trans "Actions" %}</th> <th class="mini_width">{% trans "Actions" %}</th>
</tr> </tr>
</thead> </thead>
@ -42,6 +43,9 @@
<td> <td>
<a href="{{ group|absolute_url }}">{% trans group.name %}</a> <a href="{{ group|absolute_url }}">{% trans group.name %}</a>
</td> </td>
<td>
<span class="badge badge-info">{{ group.user_set.all.count }}</span>
</td>
<td> <td>
<span style="width: 1px; white-space: nowrap;"> <span style="width: 1px; white-space: nowrap;">
{% if perms.projector.can_manage_projector %} {% if perms.projector.can_manage_projector %}

View File

@ -2,7 +2,13 @@
<h1> <h1>
{% trans group.name %} {% trans group.name %}
<hr> <small>{% trans "Group" %}</small>
</h1> </h1>
<i>{{ group.user_set.all.count }} {% trans "participants" %}</i> <p><i>{{ group.user_set.all.count }} {% trans "participants" %}</i></p>
<ol>
{% for member in group.user_set.all %}
<li>{{ member }}</li>
{% endfor %}
</ol>

View File

@ -3,7 +3,6 @@
<h1> <h1>
{{ shown_user.clean_name }}<br> {{ shown_user.clean_name }}<br>
<small>{{ shown_user.structure_level }}</small> <small>{{ shown_user.structure_level }}</small>
<hr>
</h1> </h1>
{% if shown_user.committee %} {% if shown_user.committee %}

View File

@ -71,9 +71,13 @@ h1 {
font-size: 2.25em; font-size: 2.25em;
margin-bottom: 40px; margin-bottom: 40px;
line-height: 0.95em; line-height: 0.95em;
padding-bottom: 10px;
border-bottom: 1px solid #e6e6e6;
} }
h1 small { h1 small {
font-size: 0.55em; font-size: 0.55em;
margin-top: 15px;
display: block;
} }
h3 { h3 {
font-size: 1.2em; font-size: 1.2em;

View File

@ -32,6 +32,7 @@
background-image: -webkit-linear-gradient(top, {{ 'projector_backgroundcolor1'|get_config }}, {{ 'projector_backgroundcolor2'|get_config }}); background-image: -webkit-linear-gradient(top, {{ 'projector_backgroundcolor1'|get_config }}, {{ 'projector_backgroundcolor2'|get_config }});
background-image: -o-linear-gradient(top, {{ 'projector_backgroundcolor1'|get_config }}, {{ 'projector_backgroundcolor2'|get_config }}); background-image: -o-linear-gradient(top, {{ 'projector_backgroundcolor1'|get_config }}, {{ 'projector_backgroundcolor2'|get_config }});
background-image: linear-gradient(top, {{ 'projector_backgroundcolor1'|get_config }}, {{ 'projector_backgroundcolor2'|get_config }}); background-image: linear-gradient(top, {{ 'projector_backgroundcolor1'|get_config }}, {{ 'projector_backgroundcolor2'|get_config }});
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='{{ 'projector_backgroundcolor1'|get_config }}', encColorstr='{{ 'projector_backgroundcolor2'|get_config }}')"; /* IE 8+ */
{% else %} {% else %}
background-color: {{ 'projector_backgroundcolor1'|get_config }}; background-color: {{ 'projector_backgroundcolor1'|get_config }};
{% endif %} {% endif %}

View File

@ -1,3 +1,6 @@
{% load tags %} {% load tags %}
<h1>{{ 'welcome_title'|get_config }}</h1> <h1>
{{ 'welcome_title'|get_config }}
<hr>
</h1>

View File

@ -1,6 +1,9 @@
{% load i18n %} {% load i18n %}
<h1>{{ slide.title }}</h1> <h1>
{{ slide.title }}
<hr>
</h1>
{% if slide.text %} {% if slide.text %}
<span>{{ slide.text|safe|linebreaks }}</span> <span>{{ slide.text|safe|linebreaks }}</span>