Sourcecode in Membership/edit.skin:
1: <p>To change the status of this member, simply choose from the dropdown menu and click on "Save". An e-mail will be sent to the member telling him/her that you changed the status.</p>
2: <form method="post" action="<% response.action %>">
3: <table border="0" cellspacing="0" cellpadding="3">
4: <tr>
5: <td class="small" nowrap="nowrap">Username:</td>
6: <td nowrap="nowrap"><% membership.username %></td>
7: </tr>
8: <tr>
9: <td class="small" nowrap="nowrap">e-mail:</td>
10: <td nowrap="nowrap"><% membership.email %></td>
11: </tr>
12: <tr>
13: <td class="small" nowrap="nowrap">Personal URL:</td>
14: <td nowrap="nowrap"><% membership.url as="link" %></td>
15: </tr>
16: <tr>
17: <td class="small" nowrap="nowrap">Status:</td>
18: <td nowrap="nowrap"><% membership.level as="editor" firstOption="--- choose role ---" %></td>
19: </tr>
20: <tr>
21: <td nowrap="nowrap"> </td>
22: <td nowrap="nowrap"><br /><% input type="submit" name="save" value="Save" %> <% input type="submit" name="cancel" value="Cancel" %></td>
23: </tr>
24: </table>
25: </form>
26:
|