app/soc/templates/soc/request/public.html
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 23 Jan 2009 17:07:54 +0000
changeset 928 df051fc9d7a1
parent 562 1bf2beedda03
child 1085 0afbdd0905ef
permissions -rw-r--r--
Replaced the boolean properties in soc/models/request.py with a state property. new : new Request group_accepted : The group has accepted this request completed : This request has been handled either following a creation of the role entity rejected : This request has been rejected by either the user or the group ignored : The request has been ignored by the group and will not give the user access to create the role Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

{% extends "soc/base.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 %}
{% load forms_helpers %}

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

{% block body %}
<p>
 <table>
  {% readonly_field_as_table_row entity.fields.role.label entity.role %}
  {% readonly_field_as_table_row entity.fields.link_id.label entity.link_id %}
  {% readonly_field_as_table_row entity.fields.scope_path.label entity.scope_path %}
  {% readonly_field_as_table_row entity.fields.state.label entity.state %}
  <!-- TODO(pawel.solyga) make this generic -->
 </table>
</p>
{% endblock %}