123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <footer>
- <div class="container">
- <div class="row">
- <div id="footer_left" class="span4">
- {% if session_teachers is not null %}
- <div id="session_teachers">
- {{ session_teachers }}
- </div>
- {% endif %}
- {% if teachers is not null %}
- <div id="teachers">
- {{ teachers }}
- </div>
- {% endif %}
-
- {% if plugin_footer_left is not null %}
- <div id="plugin_footer_left">
- {{ plugin_footer_left }}
- </div>
- {% endif %}
-
- </div>
- <div id="footer_center" class="span4">
-
- {% if plugin_footer_center is not null %}
- <div id="plugin_footer_center">
- {{ plugin_footer_center }}
- </div>
- {% endif %}
-
- </div>
- <div id="footer_right" class="span4">
- {% if administrator_name is not null %}
- <div id="admin_name">
- {{ administrator_name }}
- </div>
- {% endif %}
- <div id="software_name">
- {{ "Platform"|get_lang }} <a href="{{_p.web}}" target="_blank">{{_s.software_name}} {{_s.system_version}}</a>
- © {{ "now"|date("Y") }}
- </div>
-
- {% if plugin_footer_right is not null %}
- <div id="plugin_footer_right">
- {{ plugin_footer_right }}
- </div>
- {% endif %}
-
- </div>
- </div>
- </div>
- </footer>
- {{ footer_extra_content }}
- {% raw %}
- <script>
- $("form").on("click", ' .advanced_parameters', function() {
- var id = $(this).attr('id') + '_options';
- var button = $(this);
- $("#"+id).toggle(function() {
- button.toggleClass('active');
- });
- });
-
- $(document).ready( function() {
-
- $(".advanced_options").on("click", function(event) {
- event.preventDefault();
- var id = $(this).attr('id') + '_options';
- var button = $(this);
- $("#"+id).toggle(function() {
- button.toggleClass('active');
- });
- });
-
- $(".advanced_options_open").on("click", function(event) {
- event.preventDefault();
- var id = $(this).attr('rel');
- $("#"+id).show();
- });
- $(".advanced_options_close").on("click", function(event) {
- event.preventDefault();
- var id = $(this).attr('rel');
- $("#"+id).hide();
- });
-
- $(".chzn-select").chosen({
- disable_search_threshold: 10
- });
- $(".jp-jplayer audio").addClass('skip');
-
- jQuery('video:not(.skip), audio:not(.skip)').mediaelementplayer();
-
- $("form .data_table input:checkbox").click(function() {
- if ($(this).is(":checked")) {
- $(this).parentsUntil("tr").parent().addClass("row_selected");
- } else {
- $(this).parentsUntil("tr").parent().removeClass("row_selected");
- }
- });
-
- if ($("#formLogin".length > 1)) {
- $("input[name=login]").focus();
- }
-
- $('.autocapitalize_off').attr('autocapitalize', 'off');
-
- var tip_options = {
- placement : 'right'
- };
- $('.boot-tooltip').tooltip(tip_options);
- });
- {% endraw %}
- </script>
- {{ execution_stats }}
|