Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
markdoub committed Apr 29, 2016
1 parent e1c7e27 commit 6b3d5b7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
11 changes: 6 additions & 5 deletions talks/templates/events/event-group.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ <h3 class="panel-title contains-floating-buttons">
{% endif %}
</div>
</h3>
{% if editors %}
Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.username }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
</div>
{% if event_group.description %}
<div class="panel-body">
Expand Down Expand Up @@ -90,6 +85,12 @@ <h3 class="panel-title contains-floating-buttons">
{% else %}
<strong>Only showing upcoming talks </strong><a class="btn btn-default navbar-btn" href="{% url 'show-event-group' event_group.slug %}?show_all=true">Show all talks in this series</a>
{% endif %}
{% if editors %}
<p>Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.first_name }} {{ editor.last_name }}{% if not forloop.last %}, {% endif %}
{% endfor %}</p>
{% endif %}

</div>
</div>

Expand Down
10 changes: 5 additions & 5 deletions talks/templates/events/event-group.txt.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@

<br>{{ event_group.title }}
<br>
{% if editors %}
Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.username }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if event_group.description %}
<br>{{ event_group.description_html | safe | striptags | linebreaksbr }}
{% else %}
Expand Down Expand Up @@ -58,6 +53,11 @@
<br>No upcoming talks to display for this series.
{% endif %}
{% endif %}
{% if editors %}
<br>Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.first_name }} {{ editor.last_name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}

<br>
{% endblock %}
14 changes: 7 additions & 7 deletions talks/templates/events/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,6 @@ <h3 class="panel-title contains-floating-buttons event">
{% endif %}
{% endif %}

{% if editors %}
<div class="editors">
Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.username }}{% if not forloop.last %}, {% endif %}
{% endfor %}
</div>
{% endif %}

{% if event.special_message %}
<br>
Expand Down Expand Up @@ -186,6 +179,13 @@ <h3 class="panel-title contains-floating-buttons event">
</ul>
</li>
{% endif %}
{% if editors %}
<li class="list-group-item">
Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.first_name }} {{ editor.last_name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}

</ul>
</div>
Expand Down
10 changes: 5 additions & 5 deletions talks/templates/events/event.txt.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@
{% if not event.is_published %}
<br>Status: This talk is in preparation - details may change
{% endif %}
{% if editors %}
<br>Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.username }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}

{% if event.special_message %}
<br>{{ event.special_message }}
Expand Down Expand Up @@ -116,4 +111,9 @@
<br>Audience:
{{ event.get_audience_display }}

{% if editors %}
<br>Editor{{ editors|pluralize }}: {% for editor in editors %}
{{ editor.first_name }} {{ editor.last_name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% endblock %}

0 comments on commit 6b3d5b7

Please sign in to comment.