Initial list wizard templates.
- Legacy-Id: 240
This commit is contained in:
parent
1523f859af
commit
3754c0c6b4
39
ietf/templates/mailinglists/list_wizard.html
Normal file
39
ietf/templates/mailinglists/list_wizard.html
Normal file
|
@ -0,0 +1,39 @@
|
|||
{% extends "mailinglists/list_wizard_base.html" %}
|
||||
|
||||
{% block mlcontent %}
|
||||
<table bgcolor="#88AED2" cellspacing="1" border="0" width="594">
|
||||
<tr><td>
|
||||
<table bgcolor="#f3f8fd" cellpadding="3" cellspacing="0" border="0" width="100%">
|
||||
|
||||
<tr>
|
||||
<td colspan="2"><img src="/images/ietf_topleft.gif" border="0"><img src="/images/blue_title.gif" border="0"></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<img src="/images/mail_title.gif" border="0">
|
||||
</td></tr>
|
||||
<tr><td colspan="2" valign="top">
|
||||
<img src="/images/t_un.gif" border="0">
|
||||
</td></tr>
|
||||
</table>
|
||||
<form action="." method="POST">
|
||||
|
||||
<h2>Step {{ step|add:"1" }}:</h2>
|
||||
<table bgcolor="f3f8fd" cellpadding="3" cellspacing="0" border="0" width="100%">
|
||||
{{ form }}
|
||||
</table>
|
||||
|
||||
|
||||
<input type="hidden" name="{{ step_field }}" value="{{ step }}" />
|
||||
|
||||
{{ previous_fields }}
|
||||
|
||||
<input type="submit" value="Next">
|
||||
</form>
|
||||
|
||||
<!--
|
||||
clean_forms: {{ clean_forms|escape }}
|
||||
-->
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
{% endblock %}
|
25
ietf/templates/mailinglists/list_wizard_base.html
Normal file
25
ietf/templates/mailinglists/list_wizard_base.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}IETF Mailing List Form{% endblock %}
|
||||
|
||||
{% block css %}
|
||||
ul.errorlist { color: red; border: 1px solid red; }
|
||||
{% block mlcss %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
{% block head %}
|
||||
<link rel="stylesheet" type="text/css" href="http://www.ietf.org/css/base.css" />
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<blockquote>
|
||||
<img src="/images/nwg/mail_title_submission.gif" border="0"><br>
|
||||
<img src="/images/nwg/t_un1.gif" border="0">
|
||||
<!-- form step {{ step }} -->
|
||||
<br>
|
||||
{% block mlcontent %}
|
||||
form goes here
|
||||
{% endblock %}
|
||||
</blockquote>
|
||||
|
||||
{% endblock %}
|
Loading…
Reference in a new issue