Revert "Group talks by type"

This reverts commit 2d2cb25023.
This commit is contained in:
Oliver Davies 2016-01-28 07:39:41 +00:00
parent dff696aa5e
commit d161c997a7
5 changed files with 23 additions and 31 deletions

View file

@ -1,6 +0,0 @@
<li>
{{ talk.event.name }} -
<a href="{{ talk.url }}">
{{ talk.title }}
</a>
</li>

View file

@ -1,5 +0,0 @@
<ul>
{% for talk in talks if talk.type == type %}
{{ include('talk-list-item') }}
{% endfor %}
</ul>

View file

@ -0,0 +1,6 @@
{{ talk.event.name }} -
{% if talk.fuzzy_date %}
{{ talk.title }}
{% else %}
<a href="{{ talk.url }}">{{ talk.title }}</a>
{% endif %}