File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {% extends "base.html" %}
2+
3+ {% block title %}
4+ Edit Upcoming Presentations
5+ {% endblock %}
6+
7+ {% block morecss %}
8+ {{ block.super }}
9+ ul#id_versions { list-style-type: none; padding: 0px; margin: 0px; }
10+ {% endblock %}
11+
12+ {% block content %}
13+ {% load ietf_filters %}
14+
15+ < h1 > Edit Upcoming Presentations of< br /> {{doc.title}}< br /> {{doc.name}}< br /> at {{session}}</ h1 >
16+
17+ < form method ="post "> {% csrf_token %}
18+ {{form.as_p}}
19+ < input style ="button " type ="submit " name ="action " value ="Save "/>
20+ < input style ="button " type ="submit " name ="action " value ="Cancel "/>
21+ </ form >
22+
23+ {% endblock content %}
Original file line number Diff line number Diff line change 1+ {% extends "base.html" %}
2+
3+ {% block title %} {{meeting}} : {{acronym}} {% endblock %}
4+
5+ {% block morecss %}
6+ .timeheader {font-size:120%;}
7+ {% endblock %}
8+
9+ {% block content %}
10+ < h1 > {{ meeting }} : {{ acronym }} : {{ time }} </ h1 >
11+ {% if session.name %}
12+ < h2 > {{session.name}} </ h2 >
13+ {% endif %}
14+
15+ {% if session.sessionpresentation_set.all.count %}
16+ < p > Materials:
17+ < ul >
18+ {% for pres in session.sessionpresentation_set.all %}
19+ < li > < a href ="{% url 'doc_view' name=pres.document.name rev=pres.rev%} "> {{pres.document.name}}-{{pres.rev}}</ a > </ li >
20+ {% endfor %}
21+ </ ul >
22+ </ p >
23+ {% endif %}
24+
25+ {% endblock %}
Original file line number Diff line number Diff line change 1+ {% extends "base.html" %}
2+
3+ {% block title %} {{meeting}} : {{acronym}} {% endblock %}
4+
5+ {% block content %}
6+ < h1 > {{ meeting }} : {{acronym}} </ h1 >
7+
8+ < ul >
9+ {% for session in sessions %}
10+ < li > < a href ="{{forloop.counter}} "> {{session}}</ a > </ li >
11+ {% endfor %}
12+ </ ul >
13+ {% endblock %}
You can’t perform that action at this time.
0 commit comments