app/soc/templates/soc/organization/public.html
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 02 Mar 2009 00:02:11 +0000
changeset 1587 7a61eff82b9d
parent 1567 b5589e656ed1
child 1589 6a9bb0f8cde6
permissions -rw-r--r--
Make use of readonly_url_field where appropriate Patch by: Sverre Rabbelier
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1330
fa13d8b45594 Remove private data from club and org public templates
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1126
diff changeset
     1
{% extends "soc/group/public.html" %}
1126
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     2
{% comment %}
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     3
Licensed under the Apache License, Version 2.0 (the "License");
4fc86db70a76 Added organization 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.
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
You may obtain a copy of the License at
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     7
  http://www.apache.org/licenses/LICENSE-2.0
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     8
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
Unless required by applicable law or agreed to in writing, software
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
distributed under the License is distributed on an "AS IS" BASIS,
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    12
See the License for the specific language governing permissions and
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    13
limitations under the License.
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    14
{% endcomment %}
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    15
{% load forms_helpers %}
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    16
1330
fa13d8b45594 Remove private data from club and org public templates
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1126
diff changeset
    17
{% block fields %}
fa13d8b45594 Remove private data from club and org public templates
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1126
diff changeset
    18
  {{ block.super }}
fa13d8b45594 Remove private data from club and org public templates
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1126
diff changeset
    19
  {% readonly_field_as_table_row entity.fields.dev_mailing_list.label entity.dev_mailing_list %}
1567
b5589e656ed1 Member template in organization is now called Contributor Template.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1330
diff changeset
    20
  {% readonly_field_as_table_row entity.fields.contrib_template.label entity.contrib_template %}
1587
7a61eff82b9d Make use of readonly_url_field where appropriate
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1567
diff changeset
    21
  {% readonly_url_field_as_table_row entity.fields.ideas.label entity.ideas %}
1126
4fc86db70a76 Added organization view and templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    22
{% endblock %}