summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2011-09-28 22:20:16 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2011-09-28 22:20:16 +0200
commit94897110886c6af645260a39c70c244e7e69fce2 (patch)
tree5ca2e927b3c37f0a933de8442b44d2b16245c1a1
parent13580ac7db850dc1f31f2e44dea93a44607c0808 (diff)
downloadsites-94897110886c6af645260a39c70c244e7e69fce2.tar.gz
sites-94897110886c6af645260a39c70c244e7e69fce2.tar.bz2
sites-94897110886c6af645260a39c70c244e7e69fce2.zip
added template for list creation progress display
-rw-r--r--static/img/black-arrow.pngbin0 -> 1002 bytes
-rw-r--r--templates/progress.html51
2 files changed, 51 insertions, 0 deletions
diff --git a/static/img/black-arrow.png b/static/img/black-arrow.png
new file mode 100644
index 0000000..34f6d63
--- /dev/null
+++ b/static/img/black-arrow.png
Binary files differ
diff --git a/templates/progress.html b/templates/progress.html
new file mode 100644
index 0000000..ac7cc49
--- /dev/null
+++ b/templates/progress.html
@@ -0,0 +1,51 @@
+$def with (name, fail, progress)
+
+$var title: Mailinglisten
+$var headline:
+ Create new mailing list
+
+<div class="info">
+ <div class="header">
+ <b>Create a mailing list</b>
+ </div>
+
+ $if fail:
+ <p class="wrong">Error during creating list.</p>
+ $else:
+ $:progress
+</div>
+
+$if not fail:
+ <div class="info">
+ <div class="header">
+ <b>List configuration</b>
+ </div>
+
+ <p style="color: red;">
+ Note: A list administration password is required to change the
+ configuration. You will receive your administration passwort by
+ e-mail in a few minutes.
+ </p>
+
+ <p>
+ You will find the configuration page at:<br />
+ <a href="/mailman/admin/$name">
+ https://lists.spline.inf.fu-berlin.de/mailman/admin/$name
+ </a><br /><br />
+
+ <strong>
+ You will have to enable cookies!
+ </strong>
+ </p>
+
+ <p>
+ Please insert there a short description of your list.
+ </p>
+
+ <p>
+ <img alt="->" src="/static/img/black-arrow.png"
+ style="vertical-align: center;" />
+
+ <a href="/mailman/admin/$name">Click here to continue.</a>
+ </p>
+ </div>