1 {% extends "soc/base.html" %} |
1 {% extends "soc/group_app/review.html" %} |
2 {% comment %} |
2 {% comment %} |
3 Licensed under the Apache License, Version 2.0 (the "License"); |
3 Licensed under the Apache License, Version 2.0 (the "License"); |
4 you may not use this file except in compliance with 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 |
5 You may obtain a copy of the License at |
6 |
6 |
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 See the License for the specific language governing permissions and |
12 See the License for the specific language governing permissions and |
13 limitations under the License. |
13 limitations under the License. |
14 {% endcomment %} |
14 {% endcomment %} |
15 {% load forms_helpers %} |
15 {% load forms_helpers %} |
16 |
16 {% block group_details %} |
17 {% block header_title %} |
|
18 {{ page_name }} for {{ entity.name }} |
|
19 {% endblock %} |
|
20 |
|
21 {% block body %} |
|
22 <p> |
|
23 <table> |
|
24 {% readonly_field_as_twoline_table_row entity.fields.name.label entity.name %} |
|
25 {% readonly_field_as_twoline_table_row entity.fields.applicant.label entity.applicant.link_id %} |
|
26 {% readonly_field_as_twoline_table_row entity.fields.home_page.label entity.home_page %} |
|
27 {% readonly_field_as_twoline_table_row entity.fields.email.label entity.email %} |
|
28 {% readonly_field_as_twoline_table_row entity.fields.description.label entity.description %} |
|
29 {% readonly_field_as_twoline_table_row entity.fields.why_applying.label entity.why_applying %} |
|
30 {% readonly_field_as_twoline_table_row entity.fields.pub_mailing_list.label entity.pub_mailing_list %} |
17 {% readonly_field_as_twoline_table_row entity.fields.pub_mailing_list.label entity.pub_mailing_list %} |
31 {% readonly_field_as_twoline_table_row entity.fields.irc_channel.label entity.irc_channel %} |
18 {% readonly_field_as_twoline_table_row entity.fields.irc_channel.label entity.irc_channel %} |
32 {% readonly_field_as_twoline_table_row entity.fields.backup_admin.label entity.backup_admin.link_id %} |
19 {% readonly_field_as_twoline_table_row entity.fields.backup_admin.label entity.backup_admin.link_id %} |
33 {% readonly_field_as_twoline_table_row entity.fields.member_criteria.label entity.member_criteria %} |
20 {% readonly_field_as_twoline_table_row entity.fields.member_criteria.label entity.member_criteria %} |
34 {% readonly_field_as_table_row entity.fields.status.label entity.status %} |
|
35 {% readonly_field_as_table_row "Created on" entity.created_on %} |
|
36 {% readonly_field_as_table_row "Last Modified on" entity.last_modified_on %} |
|
37 </table> |
|
38 </p> |
|
39 |
|
40 <tr> |
|
41 <td> |
|
42 <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/review/{{ entity.key.name }}?status=accepted'" value="Accept"/> |
|
43 <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/review/{{ entity.key.name }}?status=rejected'" value="Reject"/> |
|
44 <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/review/{{ entity.key.name }}?status=ignored'" value="Ignore"/> |
|
45 <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/delete/{{ entity.key.name }}'" value="Delete"/> |
|
46 </td> |
|
47 </tr> |
|
48 </table> |
|
49 {% endblock %} |
21 {% endblock %} |