app/soc/templates/soc/org_app/public.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 15 Mar 2009 13:15:32 +0000
changeset 1861 3d70f0ef9199
parent 1589 6a9bb0f8cde6
permissions -rw-r--r--
Don't show possibly private info on org_app public page Patch by: Sverre Rabbelier
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1156
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     1
{% extends "soc/base.html" %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     2
{% comment %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     3
Licensed under the Apache License, Version 2.0 (the "License");
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     4
you may not use this file except in compliance with the License.
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     5
You may obtain a copy of the License at
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     6
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     7
  http://www.apache.org/licenses/LICENSE-2.0
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     8
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
     9
Unless required by applicable law or agreed to in writing, software
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    10
distributed under the License is distributed on an "AS IS" BASIS,
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    12
See the License for the specific language governing permissions and
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    13
limitations under the License.
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    14
{% endcomment %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    15
{% load forms_helpers %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    16
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    17
{% block header_title %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    18
{{ page_name }} for {{ entity.name }}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    19
{% endblock %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    20
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    21
{% block body %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    22
<p>
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    23
 <table>
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    24
  {% readonly_field_as_twoline_table_row entity.fields.name.label entity.name %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    25
  {% readonly_field_as_twoline_table_row entity.fields.applicant.label entity.applicant.link_id %}
1587
7a61eff82b9d Make use of readonly_url_field where appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1291
diff changeset
    26
  {% readonly_url_field_as_twoline_table_row entity.fields.home_page.label entity.home_page %}
1589
6a9bb0f8cde6 Use the new readonly_safe_field where appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1587
diff changeset
    27
  {% readonly_safe_field_as_twoline_table_row entity.fields.description.label entity.description %}
1587
7a61eff82b9d Make use of readonly_url_field where appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1291
diff changeset
    28
  {% readonly_url_field_as_twoline_table_row entity.fields.pub_mailing_list.label entity.pub_mailing_list %}
1156
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    29
  {% readonly_field_as_twoline_table_row entity.fields.irc_channel.label entity.irc_channel %}
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    30
 </table>
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    31
</p>
40bccd791cf6 Fixed EOL and whitespace in org_app templates
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1151
diff changeset
    32
{% endblock %}