|
@@ -3,6 +3,61 @@
|
|
|
{% block body %}
|
|
|
{# Main content #}
|
|
|
|
|
|
+ {# Right column #}
|
|
|
+ <div class="span3">
|
|
|
+ {% if plugin_menu_top %}
|
|
|
+ <div id="plugin_menu_top">
|
|
|
+ {{plugin_menu_top}}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ {# if user is not login show the login form #}
|
|
|
+ {% if _u.logged == 0 %}
|
|
|
+ {% include "default/layout/login_form.tpl" %}
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ {# User picture #}
|
|
|
+ {{ user_image_block }}
|
|
|
+
|
|
|
+ {# User Profile links #}
|
|
|
+ {{ profile_block }}
|
|
|
+
|
|
|
+ {# Course block - admin #}
|
|
|
+ {{ course_block }}
|
|
|
+
|
|
|
+ {# Course block - teacher #}
|
|
|
+ {{ teacher_block }}
|
|
|
+
|
|
|
+ {# Notice #}
|
|
|
+ {{ notice_block }}
|
|
|
+
|
|
|
+ {# Help #}
|
|
|
+ {{ help_block }}
|
|
|
+
|
|
|
+ {# Links that are not added in the tabs #}
|
|
|
+ {{ navigation_course_links }}
|
|
|
+
|
|
|
+ {# Reservation block #}
|
|
|
+ {{ reservation_block }}
|
|
|
+
|
|
|
+ {# Search (xapian) #}
|
|
|
+ {{ search_block }}
|
|
|
+
|
|
|
+ {# Classes #}
|
|
|
+ {{ classes_block }}
|
|
|
+
|
|
|
+ {# Skills #}
|
|
|
+ {{ skills_block }}
|
|
|
+
|
|
|
+ {# Plugin courses sidebar #}
|
|
|
+ {# Plugins for footer section #}
|
|
|
+
|
|
|
+ {% if plugin_menu_bottom %}
|
|
|
+ <div id="plugin_menu_bottom">
|
|
|
+ {{ plugin_menu_bottom }}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+ </div>
|
|
|
<div class="span9">
|
|
|
|
|
|
{# Plugin bottom #}
|
|
@@ -71,59 +126,4 @@
|
|
|
|
|
|
</div>
|
|
|
|
|
|
- {# Right column #}
|
|
|
- <div class="span3">
|
|
|
- {% if plugin_menu_top %}
|
|
|
- <div id="plugin_menu_top">
|
|
|
- {{plugin_menu_top}}
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
-
|
|
|
- {# if user is not login show the login form #}
|
|
|
- {% if _u.logged == 0 %}
|
|
|
- {% include "default/layout/login_form.tpl" %}
|
|
|
- {% endif %}
|
|
|
-
|
|
|
- {# User picture #}
|
|
|
- {{ user_image_block }}
|
|
|
-
|
|
|
- {# User Profile links #}
|
|
|
- {{ profile_block }}
|
|
|
-
|
|
|
- {# Course block - admin #}
|
|
|
- {{ course_block }}
|
|
|
-
|
|
|
- {# Course block - teacher #}
|
|
|
- {{ teacher_block }}
|
|
|
-
|
|
|
- {# Notice #}
|
|
|
- {{ notice_block }}
|
|
|
-
|
|
|
- {# Help #}
|
|
|
- {{ help_block }}
|
|
|
-
|
|
|
- {# Links that are not added in the tabs #}
|
|
|
- {{ navigation_course_links }}
|
|
|
-
|
|
|
- {# Reservation block #}
|
|
|
- {{ reservation_block }}
|
|
|
-
|
|
|
- {# Search (xapian) #}
|
|
|
- {{ search_block }}
|
|
|
-
|
|
|
- {# Classes #}
|
|
|
- {{ classes_block }}
|
|
|
-
|
|
|
- {# Skills #}
|
|
|
- {{ skills_block }}
|
|
|
-
|
|
|
- {# Plugin courses sidebar #}
|
|
|
- {# Plugins for footer section #}
|
|
|
-
|
|
|
- {% if plugin_menu_bottom %}
|
|
|
- <div id="plugin_menu_bottom">
|
|
|
- {{ plugin_menu_bottom }}
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
- </div>
|
|
|
-{% endblock %}
|
|
|
+{% endblock %}
|