app/soc/templates/soc/organization/public.html
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 28 Feb 2009 21:12:20 +0000
changeset 1567 b5589e656ed1
parent 1330 fa13d8b45594
child 1587 7a61eff82b9d
permissions -rw-r--r--
Member template in organization is now called Contributor Template. This matches the Organization Application, this way the information is automatically transferred to the new Organization. Note that the template shows raw HTML, we might change the template tag to use |safe for it's input to show the true layout of the template. I've sent an email to SRabbelier about that. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
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 %}
1330
fa13d8b45594 Remove private data from club and org public templates
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1126
diff changeset
    21
  {% readonly_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 %}