app/soc/templates/soc/organization/home.html
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 07 Apr 2009 21:40:23 +0000
changeset 2121 4f6344dfab28
child 2271 6519029b444f
permissions -rw-r--r--
Added list of projects to the organization home page. Only projects that have not failed will be shown here. The list will link to each project public page which will contain the necessary info about the project. Addresses part of Issue 491. Patch by: Madhusudan C.S Reviewed by: Lennard de Rijk
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2121
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     1
{% extends "soc/presence/home.html" %}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     2
{% comment %}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     3
Licensed under the Apache License, Version 2.0 (the "License");
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     4
you may not use this file except in compliance with the License.
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
You may obtain a copy of the License at
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     7
  http://www.apache.org/licenses/LICENSE-2.0
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     8
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
Unless required by applicable law or agreed to in writing, software
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
distributed under the License is distributed on an "AS IS" BASIS,
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    12
See the License for the specific language governing permissions and
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    13
limitations under the License.
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    14
{% endcomment %}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    15
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    16
{% block body %}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    17
  {{ block.super }}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    18
  {% for list_number in list.lists %}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    19
  <p>
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    20
    {% include list.nextList %}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    21
  </p>
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    22
  {% endfor %}
4f6344dfab28 Added list of projects to the organization home page.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    23
{% endblock %}