@@ -192,8 +192,8 @@ def agenda(request, date=None):
192192 data = agenda_data (date )
193193
194194 if has_role (request .user , ["Area Director" , "IAB Chair" , "Secretariat" ]):
195- data ["sections" ]["1.1" ]["title" ] = data ["sections" ]["1.1" ]["title" ].replace ("Roll call" , '<a href="https://www6.ietf.org/iesg/internal/rollcall.txt ">Roll Call</a>' )
196- data ["sections" ]["1.3" ]["title" ] = data ["sections" ]["1.3" ]["title" ].replace ("minutes" , '<a href="https://www6.ietf.org/iesg/internal/minutes.txt ">Minutes</a>' )
195+ data ["sections" ]["1.1" ]["title" ] = data ["sections" ]["1.1" ]["title" ].replace ("Roll call" , '<a href="%s ">Roll Call</a>' % settings . IESG_ROLL_CALL_URL )
196+ data ["sections" ]["1.3" ]["title" ] = data ["sections" ]["1.3" ]["title" ].replace ("minutes" , '<a href="%s ">Minutes</a>' % settings . IESG_MINUTES_URL )
197197
198198 request .session ['ballot_edit_return_point' ] = request .path_info
199199 return render (request , "iesg/agenda.html" , {
@@ -283,7 +283,9 @@ def agenda_package(request, date=None):
283283 "date" : data ["date" ],
284284 "sections" : sorted (data ["sections" ].iteritems ()),
285285 "roll_call" : data ["sections" ]["1.1" ]["text" ],
286+ "roll_call_url" : settings .IESG_ROLL_CALL_URL
286287 "minutes" : data ["sections" ]["1.3" ]["text" ],
288+ "minutes_url" : settings .IESG_MINUTES_URL
287289 "management_items" : [(num , section ) for num , section in data ["sections" ].iteritems () if "6" < num < "7" ],
288290 }, content_type = 'text/plain' )
289291
0 commit comments