commit/galaxy-central: natefoo: Commit missing template for user impersonation (Thanks Dan).

1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/1b24edc2108e/ changeset: 1b24edc2108e user: natefoo date: 2011-11-18 16:10:18 summary: Commit missing template for user impersonation (Thanks Dan). affected #: 1 file diff -r b258de1e6cea497052ae4eda1857bac3a7fdd935 -r 1b24edc2108eaa2a5e82015d6462a49418cb9f28 templates/admin/impersonate.mako --- /dev/null +++ b/templates/admin/impersonate.mako @@ -0,0 +1,29 @@ +<%inherit file="/base.mako"/> +<%namespace file="/message.mako" import="render_msg" /> + +%if message: + ${render_msg( message, status )} +%endif + +%if emails: + <div class="toolForm"> + <div class="toolFormTitle">Impersonate another user</div> + <div class="toolFormBody"> + <form name="impersonate" id="impersonate" action="${h.url_for( controller='admin', action='impersonate' )}" method="post" > + <div class="form-row"> + <label> + User to impersonate: + </label> + <select name="email" class='text-and-autocomplete-select'> + %for email in emails: + <option>${email}</option> + %endfor + </select> + </div> + <div class="form-row"> + <input type="submit" name="impersonate_button" value="Impersonate"/> + </div> + </form> + </div> + </div> +%endif Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket