first commit
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<?php include st_admin_get_template_path(__FILE__); ?>
|
||||
|
||||
<?php if (sfContext::getInstance()->getRequest()->getParameter('send')==0): ?>
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#sf_admin_list_th_sent_at').hide();
|
||||
$('.column_sent_at').hide();
|
||||
|
||||
$('#sf_admin_list_th_number_sent').hide();
|
||||
$('.column_number_sent').hide();
|
||||
|
||||
$('#sf_admin_list_th_number_received').hide();
|
||||
$('.column_number_received').hide();
|
||||
|
||||
$('#sf_admin_list_th_number_read').hide();
|
||||
$('.column_number_read').hide();
|
||||
|
||||
$('.header li:nth-child(1)').hide();
|
||||
|
||||
$('.header li:nth-child(3)').hide();
|
||||
$('.header li:nth-child(4)').hide();
|
||||
$('.header li:nth-child(5)').hide();
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<?php else: ?>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#sf_admin_list_th_created_at').hide();
|
||||
$('.column_created_at').hide();
|
||||
|
||||
$('.header li:nth-child(2)').hide();
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
Reference in New Issue
Block a user