app/soc/templates/soc/organization/home.html
author Mario Ferraro <fadinlight@gmail.com>
Sun, 15 Nov 2009 22:12:20 +0100
changeset 3093 d1be59b6b627
parent 2939 415a7c2866fd
permissions -rw-r--r--
GMaps related JS changed to use new google namespace. Google is going to change permanently in the future the way to load its services, so better stay safe. Also this commit shows uses of the new melange.js module. Fixes Issue 634.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2696
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     1
{% extends "soc/presence/home.html" %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     2
{% comment %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     3
Licensed under the Apache License, Version 2.0 (the "License");
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     4
you may not use this file except in compliance with the License.
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     5
You may obtain a copy of the License at
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     6
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     7
  http://www.apache.org/licenses/LICENSE-2.0
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     8
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
     9
Unless required by applicable law or agreed to in writing, software
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    10
distributed under the License is distributed on an "AS IS" BASIS,
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    12
See the License for the specific language governing permissions and
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    13
limitations under the License.
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    14
{% endcomment %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    15
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    16
{% block scripts %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    17
{{ block.super }}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    18
{% if gmaps_api_key %}
3093
d1be59b6b627 GMaps related JS changed to use new google namespace.
Mario Ferraro <fadinlight@gmail.com>
parents: 2939
diff changeset
    19
	<script src="http://www.google.com/jsapi?key={{ gmaps_api_key }}" type="text/javascript"></script>
d1be59b6b627 GMaps related JS changed to use new google namespace.
Mario Ferraro <fadinlight@gmail.com>
parents: 2939
diff changeset
    20
	<script type="text/javascript" src="/soc/content/js/templates/soc/organization/home-091027.js" melangeContext="{map_data: {{ org_map_data }} }"></script>
2696
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    21
{% endif %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    22
{% endblock %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    23
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    24
{% block body_tag %}
3093
d1be59b6b627 GMaps related JS changed to use new google namespace.
Mario Ferraro <fadinlight@gmail.com>
parents: 2939
diff changeset
    25
  {{ block.super }}
2696
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    26
{% endblock %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    27
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    28
{% block instructions %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    29
{{ block.super }}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    30
{% if not gmaps_api_key %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    31
<br /><span class="error">Google Maps API key not present.
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    32
Please insert your key in <a href="/site/edit">Site Settings</a>, Google Maps field.
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    33
</span>
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    34
{% endif %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    35
{% endblock %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    36
{% block home_extras %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    37
<div id="org_home_extras">
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    38
  {% for list_number in list.lists %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    39
  <p>
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    40
    {% include list.nextList %}
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    41
  </p>
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    42
  {% endfor %}
2714
f1e2afcde89f Fixed Org home view map to only appear when projects have been announced.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2699
diff changeset
    43
f1e2afcde89f Fixed Org home view map to only appear when projects have been announced.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2699
diff changeset
    44
  {% if gmaps_api_key and org_map_data %}
f1e2afcde89f Fixed Org home view map to only appear when projects have been announced.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2699
diff changeset
    45
    <div id="org_home_map"></div>
f1e2afcde89f Fixed Org home view map to only appear when projects have been announced.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2699
diff changeset
    46
  {% endif %}
2696
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    47
</div>
c76c9c5916bd Moved the student<->mentor map on the org home page below the list.
Mario Ferraro <fadinlight@gmail.com>
parents: 2389
diff changeset
    48
{% endblock %}