app/soc/templates/soc/host/manage.html
author Lennard de Rijk <ljvderijk@gmail.com>
Thu, 29 Jan 2009 18:13:21 +0000
changeset 1067 ecf3df87b81c
child 1955 06ed84dbb1ed
permissions -rw-r--r--
Added manage view for Club Admins, Club Members and Hosts. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

{% extends "soc/host/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 %}
<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 %}