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" %> 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%"> </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=" 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 by " %><% story.modifytime format="short" prefix=" on " %></td>
32: </tr>
33: <tr>
34: <td nowrap="nowrap"><br /><% input type="submit" name="publish" value="Publish" %> <% input type="submit" name="save" value="Save offline" %> <% input type="submit" name="cancel" value="Cancel" %></td>
35: </tr>
36: </table>
37: </form>
38:
|