Poll/edit.skin
general parameters used in this skin:
  • response.action
  • response.choices

Sourcecode in Poll/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">Question:</span><br />
5:   <% poll.question as="editor" cols="30" rows="3" class="formText" %></td>
6:   </tr>
7:   
8:   <% response.choices %>
9:   
10:  <tr>
11:  <td class="small"><% poll.creator as="link" prefix='Created by ' suffix=' on ' %><% poll.createtime format="short" suffix="." %></td>
12:  </tr>
13:  <tr>
14:  <td nowrap="nowrap"><br /><% input type="submit" name="save" value="Save" %>&nbsp;<% input type="submit" name="addchoice" value="Add choice" %>&nbsp;<% input type="submit" name="cancel" value="Cancel" %></td>
15:  </tr>
16:  </table>
17:  </form>
18: