app/soc/templates/soc/club_admin/manage.html
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 20 Mar 2009 18:53:37 +0000
changeset 1955 06ed84dbb1ed
parent 1730 2d877bb10306
child 2330 068540d91bde
permissions -rw-r--r--
Moved canResign check to role logic so subclasses can override. Also changed the variable name in the templates to be more generic. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

{% extends "soc/club_admin/public.html" %}
{% comment %}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
{% endcomment %}

{% block header_title %}
{{ page_name }} {{ entity.link_id }} for {{ entity.scope_path }}
{% endblock %}

{% block manage %}
<div class="error">{{ resign_error }}</div>
<tr>
  <td>
    Please select the appropriate action:</br>
    <input type="button" onclick="location.href='/{{ url_name }}/manage/{{ entity.scope_path }}/{{ entity.link_id }}?resign=true'" value="Resign"/>
    <input type="button" onclick="location.href='{{ cancel_redirect }}'" value="Cancel"/>
  </td>
</tr>
{% endblock %}