app/soc/templates/soc/org_app/review.html
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 01 Feb 2009 16:09:43 +0000
changeset 1151 3116b927f4b9
child 1156 40bccd791cf6
permissions -rw-r--r--
Added org_app view and templates. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1151
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     1
{% extends "soc/base.html" %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     2
{% comment %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     3
Licensed under the Apache License, Version 2.0 (the "License");
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     4
you may not use this file except in compliance with the License.
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
You may obtain a copy of the License at
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     7
  http://www.apache.org/licenses/LICENSE-2.0
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     8
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
Unless required by applicable law or agreed to in writing, software
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
distributed under the License is distributed on an "AS IS" BASIS,
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    12
See the License for the specific language governing permissions and
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    13
limitations under the License.
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    14
{% endcomment %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    15
{% load forms_helpers %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    16
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    17
{% block header_title %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    18
{{ page_name }} for {{ entity.name }}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    19
{% endblock %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    20
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    21
{% block body %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    22
<p>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    23
 <table>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    24
  {% readonly_field_as_twoline_table_row entity.fields.name.label entity.name %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    25
  {% readonly_field_as_twoline_table_row entity.fields.applicant.label entity.applicant.link_id %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    26
  {% readonly_field_as_twoline_table_row entity.fields.home_page.label entity.home_page %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    27
  {% readonly_field_as_twoline_table_row entity.fields.email.label entity.email %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    28
  {% readonly_field_as_twoline_table_row entity.fields.description.label entity.description %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    29
  {% readonly_field_as_twoline_table_row entity.fields.why_applying.label entity.why_applying %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    30
  {% readonly_field_as_twoline_table_row entity.fields.prior_participation.label entity.prior_participation %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    31
  {% readonly_field_as_twoline_table_row entity.fields.prior_application.label entity.prior_application %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    32
  {% readonly_field_as_twoline_table_row entity.fields.license_name.label entity.license_name %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    33
  {% readonly_field_as_twoline_table_row entity.fields.pub_mailing_list.label entity.pub_mailing_list %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    34
  {% readonly_field_as_twoline_table_row entity.fields.dev_mailing_list.label entity.dev_mailing_list %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    35
  {% readonly_field_as_twoline_table_row entity.fields.irc_channel.label entity.irc_channel %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    36
  {% readonly_field_as_twoline_table_row entity.fields.backup_admin.label entity.backup_admin.link_id %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    37
  {% readonly_field_as_twoline_table_row entity.fields.member_criteria.label entity.member_criteria %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    38
  {% readonly_field_as_twoline_table_row entity.fields.contrib_disappears.label entity.contrib_disappears %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    39
  {% readonly_field_as_twoline_table_row entity.fields.member_disappears.label entity.member_disappears %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    40
  {% readonly_field_as_twoline_table_row entity.fields.encourage_contribs.label entity.encourage_contribs %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    41
  {% readonly_field_as_twoline_table_row entity.fields.continued_contribs.label entity.continued_contribs %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    42
  {% readonly_field_as_twoline_table_row entity.fields.ideas.label entity.ideas %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    43
  {% readonly_field_as_twoline_table_row entity.fields.contrib_template.label entity.contrib_template %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    44
 
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    45
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    46
  {% readonly_field_as_table_row entity.fields.status.label entity.status %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    47
  {% readonly_field_as_table_row "Created on" entity.created_on %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    48
  {% readonly_field_as_table_row "Last Modified on" entity.last_modified_on %}
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    49
 </table>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    50
</p>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    51
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    52
<tr>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    53
  <td>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    54
    <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/review/{{ entity.key.name }}?status=accepted'" value="Accept"/>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    55
    <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/review/{{ entity.key.name }}?status=rejected'" value="Reject"/>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    56
    <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/review/{{ entity.key.name }}?status=ignored'" value="Ignore"/>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    57
    <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/delete/{{ entity.key.name }}'" value="Delete"/>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    58
  </td>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    59
</tr>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    60
</table>
3116b927f4b9 Added org_app view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    61
{% endblock %}