show time and location in schedule list
This commit is contained in:
parent
f698d00fc8
commit
796a8c98ba
1 changed files with 9 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
.presentation p {
|
.presentation p {
|
||||||
margin: 0;
|
margin-bottom: 0.5em;
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -31,6 +31,14 @@
|
||||||
<h3><a href="#">{{ presentation.title }}</a></h3>
|
<h3><a href="#">{{ presentation.title }}</a></h3>
|
||||||
<h4>{{ presentation.speaker }} in {{ presentation.proposal.track }}</h4>
|
<h4>{{ presentation.speaker }} in {{ presentation.proposal.track }}</h4>
|
||||||
{{ presentation.description }}
|
{{ presentation.description }}
|
||||||
|
{% if presentation.slot %}
|
||||||
|
<h4>
|
||||||
|
{{ presentation.slot.day.date|date:"l" }}
|
||||||
|
{{ presentation.slot.start}}–{{ presentation.slot.end }}
|
||||||
|
in
|
||||||
|
{{ presentation.slot.rooms|join:", " }}
|
||||||
|
</h4>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue