Fixed Org home view map to only appear when projects have been announced.
authorLennard de Rijk <ljvderijk@gmail.com>
Sun, 02 Aug 2009 23:45:42 +0200
changeset 2714 f1e2afcde89f
parent 2713 ee7eb60b4fd3
child 2715 afd5368af75c
Fixed Org home view map to only appear when projects have been announced.
app/soc/templates/soc/organization/home.html
--- a/app/soc/templates/soc/organization/home.html	Sun Aug 02 22:39:47 2009 +0200
+++ b/app/soc/templates/soc/organization/home.html	Sun Aug 02 23:45:42 2009 +0200
@@ -38,19 +38,15 @@
 {% endif %}
 {% endblock %}
 {% block home_extras %}
-{% for list_number in list.lists %}
-<p>
-  {% include list.nextList %}
-</p>
-{% endfor %}
 <div id="org_home_extras">
   {% for list_number in list.lists %}
   <p>
     {% include list.nextList %}
   </p>
   {% endfor %}
- {% if gmaps_api_key %}
-   <div id="org_home_map"></div>
- {% endif %}
+
+  {% if gmaps_api_key and org_map_data %}
+    <div id="org_home_map"></div>
+  {% endif %}
 </div>
 {% endblock %}