Added a no-agenda template for the iPhone agenda, too.

- Legacy-Id: 7643
This commit is contained in:
Henrik Levkowetz 2014-04-25 14:03:52 +00:00
parent e11180e073
commit 0076f1133a

View file

@ -0,0 +1,17 @@
{% extends "m_base.html" %}
{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% load humanize %}
{% load ietf_filters %}
{% block title %} IETF {{ meeting.number }} Meeting Agenda{% endblock %}
{% block head %}
<link href="http://tools.ietf.org/css/palette.css" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" href="/images/agenda-touch-icon.png" />
{% endblock %}
{% block content %}
<div class="header">
<a name="{{ meeting.date|date:"Y-m-d_0000" }}" />
<h1>Agenda of the {{ meeting.number|ordinal }} IETF Meeting</h1>
<h2>{{ meeting.date|date:"F j" }}-{% if meeting.date.month != meeting.end_date.month %}{{ meeting.end_date|date:"F " }}{% endif %}{{ meeting.end_date|date:"j, Y" }}</h2>
</div>
<div class="legal">There is no Agenda available yet.</div>
{% endblock %}