From 1c2060b7d6d3e3f61c26473ab5e9255c8e7edc43 Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Sun, 18 Jul 2021 12:46:38 -0300 Subject: [PATCH] schedule editor: display talk notes as title Displaying the talk title again in the title is pointless since the title is already the main element displayed. Showing the notes makes it easier for the people doing the scheduling to see e.g. notes about scheduling restrictions etc. --- wafer/schedule/templates/wafer.schedule/edit_schedule.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wafer/schedule/templates/wafer.schedule/edit_schedule.html b/wafer/schedule/templates/wafer.schedule/edit_schedule.html index 6a3b9263..2c21578b 100644 --- a/wafer/schedule/templates/wafer.schedule/edit_schedule.html +++ b/wafer/schedule/templates/wafer.schedule/edit_schedule.html @@ -119,7 +119,7 @@

{% trans 'Bucket' %}

class="badge badge-success draggable" id="talk{{ talk.talk_id }}" data-toggle="tooltip" data-placement="left" - title="{{ talk.title }}" + title="{{ talk.notes|default:"(no notes)" }}" {% if talk not in talks_unassigned %} hidden {% endif %}