From 3754c0c6b44ba7c352bbe38a2be2fe97b348b205 Mon Sep 17 00:00:00 2001 From: Bill Fenner <fenner@fenron.net> Date: Tue, 5 Jun 2007 18:05:57 +0000 Subject: [PATCH] Initial list wizard templates. - Legacy-Id: 240 --- ietf/templates/mailinglists/list_wizard.html | 39 +++++++++++++++++++ .../mailinglists/list_wizard_base.html | 25 ++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 ietf/templates/mailinglists/list_wizard.html create mode 100644 ietf/templates/mailinglists/list_wizard_base.html diff --git a/ietf/templates/mailinglists/list_wizard.html b/ietf/templates/mailinglists/list_wizard.html new file mode 100644 index 000000000..742383963 --- /dev/null +++ b/ietf/templates/mailinglists/list_wizard.html @@ -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 %} diff --git a/ietf/templates/mailinglists/list_wizard_base.html b/ietf/templates/mailinglists/list_wizard_base.html new file mode 100644 index 000000000..e71b5aa0b --- /dev/null +++ b/ietf/templates/mailinglists/list_wizard_base.html @@ -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 %}