app/soc/templates/soc/host/manage.html
changeset 1067 ecf3df87b81c
child 1955 06ed84dbb1ed
equal deleted inserted replaced
1066:b22750a2b04a 1067:ecf3df87b81c
       
     1 {% extends "soc/host/public.html" %}
       
     2 {% comment %}
       
     3 Licensed under the Apache License, Version 2.0 (the "License");
       
     4 you may not use this file except in compliance with the License.
       
     5 You may obtain a copy of the License at
       
     6 
       
     7   http://www.apache.org/licenses/LICENSE-2.0
       
     8 
       
     9 Unless required by applicable law or agreed to in writing, software
       
    10 distributed under the License is distributed on an "AS IS" BASIS,
       
    11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    12 See the License for the specific language governing permissions and
       
    13 limitations under the License.
       
    14 {% endcomment %}
       
    15 
       
    16 {% block header_title %}
       
    17 {{ page_name }} {{ entity.link_id }} for {{ entity.scope_path }}
       
    18 {% endblock %}
       
    19 
       
    20 {% block manage %}
       
    21 <tr>
       
    22   <td>
       
    23     Please select the appropriate action:</br>
       
    24     <input type="button" onclick="location.href='/{{ url_name }}/manage/{{ entity.scope_path }}/{{ entity.link_id }}?resign=true'" value="Resign"/>
       
    25     <input type="button" onclick="location.href='{{ cancel_redirect }}'" value="Cancel"/>
       
    26   </td>
       
    27 </tr>
       
    28 {% endblock %}