Skip to content

Commit a23d316

Browse files
committed
Tweaked the strings displayed when a plenary agenda cannot be shown.
- Legacy-Id: 6460
1 parent 5807ad2 commit a23d316

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/meeting/helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def agenda_info(num=None):
205205

206206
active_agenda = State.objects.get(used=True, type='agenda', slug='active')
207207
plenary_agendas = Document.objects.filter(session__meeting=meeting, session__slots__type="plenary", type="agenda", ).distinct()
208-
plenaryw_agenda = plenaryt_agenda = "The Plenary has not been scheduled"
208+
plenaryw_agenda = plenaryt_agenda = "The agenda has not been uploaded yet."
209209
for agenda in plenary_agendas:
210210
if active_agenda in agenda.states.all():
211211
# we use external_url at the moment, should probably regularize
@@ -216,7 +216,7 @@ def agenda_info(num=None):
216216
s = f.read()
217217
f.close()
218218
except IOError:
219-
s = "THE AGENDA HAS NOT BEEN UPLOADED YET"
219+
s = "No agenda file found."
220220

221221
if "tech" in agenda.name.lower():
222222
plenaryt_agenda = s

0 commit comments

Comments
 (0)