forked from boyska/sito-hackit-17
classi in base al tag nel programma
This commit is contained in:
parent
3d172beb73
commit
bcc35d97ee
2 changed files with 8 additions and 4 deletions
|
@ -60,9 +60,12 @@ td.talk > a {
|
|||
{% elif talk == None %}
|
||||
<td></td>
|
||||
{% elif not talk.skip %}
|
||||
<td class="talk {% if talk.room == '*' -%}allrooms{%-endif-%}" rowspan="{{talk.duration // timestep}}"
|
||||
{% if talk.room == '*'
|
||||
%}colspan="{{rooms|length}}"{%endif%}>
|
||||
<td class="talk
|
||||
{% if talk.room == '*' -%}allrooms{%-endif-%}
|
||||
{% for t in talk.tags -%} tag-{{t|replace(' ', '_')}} {%endfor-%}
|
||||
"
|
||||
rowspan="{{talk.duration // timestep}}"
|
||||
{% if talk.room == '*' %}colspan="{{rooms|length}}"{%endif%}>
|
||||
<a href="#talk-{{talk.id}}"
|
||||
title="{{talk.tags|join(",")}}"
|
||||
>{{talk.title}}</a>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<div id="talk-{{id}}">
|
||||
<div id="talk-{{id}}"
|
||||
class="{% for t in tags -%} tag-{{t|replace(' ', '_')}} {% endfor -%}">
|
||||
<h3 class="talk-title">{{title}}</h3>
|
||||
<div class="talk-info">
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue