diff --git a/mote/main.py b/mote/main.py index cce321ac..3b047a7b 100644 --- a/mote/main.py +++ b/mote/main.py @@ -124,6 +124,8 @@ def statfile(channame, cldrdate, meetname, typecont): abort(404) else: meeting_title = re.search(main.config["RECOGNIITION_PATTERN"], meetname) + # Generate URL for the summary page + summary_url = url_for('evtsmry', channame=channame, cldrdate=cldrdate, meetname=meetname) return render_template( "statfile.html.j2", @@ -133,6 +135,7 @@ def statfile(channame, cldrdate, meetname, typecont): timetext=meeting_title.group(3), typecont=typecont, meetcont=meetcont[1], + summary_url=summary_url, # URL for the summary page ) diff --git a/mote/templates/event_summary.html.j2 b/mote/templates/event_summary.html.j2 index 0798abf3..a607c677 100644 --- a/mote/templates/event_summary.html.j2 +++ b/mote/templates/event_summary.html.j2 @@ -63,6 +63,8 @@ {% endfor %} + View Full Logs +
Action Items ({{ meet['actions']|length }})
diff --git a/mote/templates/statfile.html.j2 b/mote/templates/statfile.html.j2 index 06e2081d..9b4788df 100644 --- a/mote/templates/statfile.html.j2 +++ b/mote/templates/statfile.html.j2 @@ -32,6 +32,11 @@