Story/edit.skin
general parameters used in this skin:
  • request.topic
  • response.action

Sourcecode in Story/edit.skin:
1:   <form method="post" action="<% response.action %>">
2:   <table border="0" cellspacing="0" cellpadding="3">
3:   <tr>
4:   <td nowrap="nowrap"><span class="small">Title:</span><br />
5:   <% story.content part="title" as="editor" size="24" class="formTitle" %></td>
6:   </tr>
7:   <tr>
8:   <td nowrap="nowrap"><span class="small">Text:</span><br />
9:   <% story.content part="text" as="editor" cols="30" rows="15" class="formText" %></td>
10:  </tr>
11:  <tr>
12:  <td><fieldset><legend class="small">Options</legend>
13:  <p><% story.addtofront as="editor" checked="checked" %>&nbsp;Show this story on the front page</p>
14:  
15:  Add this story to a topic<br />
16:  <table style="margin-left:15px;">
17:  <tr>
18:  <td width="48%" class="small">Choose a topic...<br />
19:  <% story.topicchooser firstOption="--- choose topic ---" %></td>
20:  <td valign="top" width="4%">&nbsp;</td>
21:  <td valign="top" width="48%" class="small">...or enter a new one<br /> 
22:  <input type="text" name="topic" value="<% request.topic %>" /></td>
23:  </tr>
24:  </table>
25:  
26:  <p>This story is editable by<br />
27:  <span class="small"><% story.editableby as="editor" %></span></p>
28:  <% story.discussions as="editor" prefix="<p>" suffix="&nbsp;Allow comments</p>" %></fieldset></td>
29:  </tr>
30:  <tr>
31:  <td class="small"><% story.creator as="link" prefix="Created by " %><% story.modifier as="link" prefix=", last modified&nbsp;by&nbsp;" %><% story.modifytime format="short" prefix="&nbsp;on&nbsp;" %></td>
32:  </tr>
33:  <tr>
34:  <td nowrap="nowrap"><br /><% input type="submit" name="publish" value="Publish" %>&nbsp;<% input type="submit" name="save" value="Save offline" %>&nbsp;<% input type="submit" name="cancel" value="Cancel" %></td>
35:  </tr>
36:  </table>
37:  </form>
38: