Skip to content

Commit 3754c0c

Browse files
committed
Initial list wizard templates.
- Legacy-Id: 240
1 parent 1523f85 commit 3754c0c

2 files changed

Lines changed: 64 additions & 0 deletions

File tree

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{% extends "mailinglists/list_wizard_base.html" %}
2+
3+
{% block mlcontent %}
4+
<table bgcolor="#88AED2" cellspacing="1" border="0" width="594">
5+
<tr><td>
6+
<table bgcolor="#f3f8fd" cellpadding="3" cellspacing="0" border="0" width="100%">
7+
8+
<tr>
9+
<td colspan="2"><img src="/images/ietf_topleft.gif" border="0"><img src="/images/blue_title.gif" border="0"></td>
10+
</tr>
11+
<tr><td colspan="2">
12+
<img src="/images/mail_title.gif" border="0">
13+
</td></tr>
14+
<tr><td colspan="2" valign="top">
15+
<img src="/images/t_un.gif" border="0">
16+
</td></tr>
17+
</table>
18+
<form action="." method="POST">
19+
20+
<h2>Step {{ step|add:"1" }}:</h2>
21+
<table bgcolor="f3f8fd" cellpadding="3" cellspacing="0" border="0" width="100%">
22+
{{ form }}
23+
</table>
24+
25+
26+
<input type="hidden" name="{{ step_field }}" value="{{ step }}" />
27+
28+
{{ previous_fields }}
29+
30+
<input type="submit" value="Next">
31+
</form>
32+
33+
<!--
34+
clean_forms: {{ clean_forms|escape }}
35+
-->
36+
</td></tr>
37+
</table>
38+
39+
{% endblock %}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{% extends "base.html" %}
2+
3+
{% block title %}IETF Mailing List Form{% endblock %}
4+
5+
{% block css %}
6+
ul.errorlist { color: red; border: 1px solid red; }
7+
{% block mlcss %}{% endblock %}
8+
{% endblock %}
9+
10+
{% block head %}
11+
<link rel="stylesheet" type="text/css" href="http://www.ietf.org/css/base.css" />
12+
{% endblock %}
13+
14+
{% block content %}
15+
<blockquote>
16+
<img src="/images/nwg/mail_title_submission.gif" border="0"><br>
17+
<img src="/images/nwg/t_un1.gif" border="0">
18+
<!-- form step {{ step }} -->
19+
<br>
20+
{% block mlcontent %}
21+
form goes here
22+
{% endblock %}
23+
</blockquote>
24+
25+
{% endblock %}

0 commit comments

Comments
 (0)