diff --git a/README.rst b/README.rst
index 66810314..d98ebdd6 100644
--- a/README.rst
+++ b/README.rst
@@ -16,6 +16,9 @@ YAML Meeting File Format
Each meeting consists of:
* ``project``: the name of the project
+* ``meeting_id``: the name given to the ``#startmeeting`` meetbot command
+* ``agenda_url`` the URL to the page with the agenda for the meeting,
+ usually in the wiki
* ``schedule``: a list of schedule each consisting of
* ``time``: time string in UTC
diff --git a/meetingindex.jinja b/meetingindex.jinja
index 2bf9ac85..791fa612 100644
--- a/meetingindex.jinja
+++ b/meetingindex.jinja
@@ -44,6 +44,12 @@ in #{{ schedule.irc }}
{% endfor %}
Chair (to contact for more information): {{ meeting.chair }}
{{ meeting.description|urlize }}
+{% if meeting.extras.meeting_id %}
+Logs from past meetings
+{% endif %}
+{% if meeting.extras.agenda_url %}
+Agenda
+{% endif %}
{% endfor %}
diff --git a/meetings/oslo-team-meeting.yaml b/meetings/oslo-team-meeting.yaml
index 35573369..1e758312 100644
--- a/meetings/oslo-team-meeting.yaml
+++ b/meetings/oslo-team-meeting.yaml
@@ -1,4 +1,6 @@
project: Oslo Team Meeting
+meeting_id: oslo
+agenda_url: https://wiki.openstack.org/wiki/Meetings/Oslo
schedule:
- time: '1600'
day: Monday
diff --git a/test-requirements.txt b/test-requirements.txt
index 627b24da..f1956543 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1 +1 @@
-yaml2ical>=0.3.0
+yaml2ical>=0.4.0