diff --git a/pinaxcon/templates/symposion/schedule/_grid.html b/pinaxcon/templates/symposion/schedule/_grid.html
index fb8cbfd0..bdbdcb4f 100644
--- a/pinaxcon/templates/symposion/schedule/_grid.html
+++ b/pinaxcon/templates/symposion/schedule/_grid.html
@@ -1,3 +1,4 @@
+
{% load lca2018_tags %}
{% load waffle_tags %}
@@ -40,14 +41,12 @@
{% if slot.sessions %}
{% for session in slot.sessions.all %}
+
Session chair:
{% if not session.chair %}
-
Volunteer! 🙋
{% elif session.chair.user == request.user %}
-
- (You are session chair)
- {% endif %}
-
+ You!
+ {% endif %}
{% endfor %}
{% endif %}
@@ -64,7 +63,7 @@
{% if "break" in slot.kind.label %}
{% else %}
- {{ slot.rooms|join:", "}}
+ {{ slot.rooms|join:", "}} ends {{ slot.end|date:"h:iA" }}
{% endif %}
diff --git a/static/src/css/app.css b/static/src/css/app.css
index d86d51d7..c7ba24ca 100644
--- a/static/src/css/app.css
+++ b/static/src/css/app.css
@@ -206,12 +206,15 @@ div.system-message p.system-message-title {
/* Schedule, proposal and presenter display */
/* Make sure twitter/link buttons get displayed */
-.room {
+.mw760, .room {
display: none;
}
.speaker {
display: block;
}
+.endtime {
+ font-style: italic;
+}
.presenters .btn-group {
display: inline-flex;
@@ -220,7 +223,8 @@ div.system-message p.system-message-title {
.presenters .btn-svg { width: 20px; }
@media all and (max-width: 760px) {
- .room { display: block; }
+ .mw760, .room { display: block; }
+ .speaker { font-weight: bold; }
}
@media only screen and (max-width: 760px) {