You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/application/views/bootstrap/information_backup_content.php

18 lines
671 B
PHP

<textarea id="ic_content" name="ic_content" class="span12" rows="20" ><?php echo str_replace($this->config->item('site_image_url'),$this->config->item('media_image_url'),$log_info->log_content); ?></textarea>
<div class="well" >
<legend>所有历史记录</legend>
<ol>
<?php foreach($log_list as $item){ ?>
<li><a href="<?php echo site_url('information/backup_content/'.$item->log_id); ?>" >
<?php if($item->log_id==$log_info->log_id){ ?>
<strong><?php echo $item->log_datetime.' '.$item->log_ht_username; ?></strong>
<?php }else{ ?>
<?php echo $item->log_datetime.' '.$item->log_ht_username; ?>
<?php } ?>
</a></li>
<?php } ?>
</ol>
</div>