datatracker/ietf/templates/mailinglists/nwg_wizard_base.html
Bill Fenner 41b788ad30 Rearrange nwg model to get the fields in the right order.
Allow nwg wizard to have a per-step template.

Write templates for step 0 and add/edit step 1.
 - Legacy-Id: 149
2007-05-22 19:56:20 +00:00

26 lines
590 B
HTML

{% extends "base.html" %}
{% block title %}IETF Non WG Mailing List Submit Form{% endblock %}
{% block css %}
ul.errorlist { color: red; border: 1px solid red; }
{% block nwgcss %}{% 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 nwgcontent %}
form goes here
{% endblock %}
</blockquote>
{% endblock %}