summary refs log tree commit diff stats
path: root/theme/admin/writeQuote.tpl
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-08-13 17:46:09 -0400
committerStarla Insigna <hatkirby@fourisland.com>2009-08-13 17:46:09 -0400
commitb5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a (patch)
tree0449277e94a42aa155995a90fd8a89cb3309e7ab /theme/admin/writeQuote.tpl
parent6a1d5b60e6ec541a36727b84b71168f62221f7d7 (diff)
downloadfourisland-b5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a.tar.gz
fourisland-b5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a.tar.bz2
fourisland-b5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a.zip
Rewrote Admin panel
The following database changes must be made:

* A TEXT column called "text" must be added to the end of "polloftheweek"
* The transferPollRss.php script must be run
* The "pollrss" table must be dropped

Closes #113
Diffstat (limited to 'theme/admin/writeQuote.tpl')
-rw-r--r--theme/admin/writeQuote.tpl34
1 files changed, 34 insertions, 0 deletions
diff --git a/theme/admin/writeQuote.tpl b/theme/admin/writeQuote.tpl new file mode 100644 index 0000000..3a9bb3f --- /dev/null +++ b/theme/admin/writeQuote.tpl
@@ -0,0 +1,34 @@
1<h2><!--TITLE--></h2>
2
3<form action="<!--ACTION-->" method="post" class="uniForm">
4 <!--BEGIN ISERROR-->
5 <div id="errorMsg">
6 <h3>Oops! There was an error!</h3>
7
8 <ol>
9 <!--BEGIN ERROR-->
10 <li><a href="#error<!--ERROR.ID-->" title="Jump to error"><!--ERROR.TEXT--></a></li>
11 <!--END ERROR-->
12 </ol>
13 </div>
14 <!--END ISERROR-->
15
16 <!--BEGIN FLASH-->
17 <div id="OKMsg"><p><!--FLASH.TEXT--></p></div>
18 <!--END FLASH-->
19
20 <fieldset class="blockLabels">
21 <div class="ctrlHolder<!--ISQUOTEERROR-->">
22 <!--BEGIN QUOTEERROR-->
23 <p id="error<!--QUOTEERROR.ID-->" class="errorField"><strong><!--QUOTEERROR.TEXT--></strong></p>
24 <!--END QUOTEERROR-->
25 <label for="quote">Quote</label>
26 <textarea name="quote" id="quote" style="height: 24em"><![CDATA[<!--QUOTEVALUE-->]]></textarea>
27 </div>
28 </fieldset>
29
30 <div class="buttonHolder">
31 <button type="reset" class="resetButton">Reset</button>
32 <button type="submit" class="primaryAction">Submit</button>
33 </div>
34</form>