You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
54 lines
1.6 KiB
<div id="footer"> <!-- start of #footer section -->
|
|
<div id="bottom_corner"></div>
|
|
<div class="copyright">
|
|
{if $show_administrator_data == 'true'}
|
|
<div align="right">
|
|
{$administrator_name}
|
|
</div>
|
|
{/if}
|
|
<div align="right">
|
|
{"Platform"|get_lang} <a href="{$_p.web}" target="_blank">{$_s.software_name} {$_s.system_version}</a> © {$smarty.now|date_format:"%Y"}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer_emails">
|
|
{* Plugins for footer section *}
|
|
<div id="plugin-footer">
|
|
{$plugin_footer}
|
|
</div>
|
|
<div style="clear:both"></div>
|
|
</div>
|
|
</div> <!-- end of #footer -->
|
|
{$footer_extra_content}
|
|
{literal}
|
|
<script type="text/javascript">
|
|
$(document).ready( function() {
|
|
$(".chzn-select").chosen();
|
|
|
|
//highlighting rows
|
|
|
|
/*$("form .data_table .row_even, form .data_table .row_odd").click(function(e) {
|
|
var $check = $(this).find("input:checkbox");
|
|
if ($check.is(":checked")) {
|
|
$(this).removeClass("row_selected");
|
|
$check.removeAttr('checked', 'checked');
|
|
} else {
|
|
$(this).addClass("row_selected");
|
|
$check.attr('checked', 'checked');
|
|
}
|
|
});*/
|
|
|
|
$("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");
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
{/literal}
|
|
{$execution_stats}
|
|
|
|
|
|
|