sql delete replaced by delete flag
log list (simple), log categories
minor bug fixes in css
This commit is contained in:
Ricsi
2016-12-30 18:00:05 +01:00
parent 664097a976
commit 5a78b09a38
39 changed files with 557 additions and 92 deletions

View File

@@ -0,0 +1,21 @@
<div style="overflow-x:auto;">
<table class="log">
{foreach $log_array as $log}
<tr class="{$log->get_log_img()}">
<td><img src="/_image/{$log->get_log_img()}.png"></td>
<td>#{$log->get_log_id()}</td>
<td>{$log->get_log_date()}</td>
<td>
{if $log->get_log_category()->get_logc_type() == 1}
{$log->get_log_user()->get_ua_name()}
{elseif $log->get_log_category()->get_logc_type() == 2}
{$log->get_log_user()->get_uk_name()}
{/if}
</td>
<td>{$log->get_log_category()->get_logc_title()}</td>
<td>{$log->get_log_text()}</td>
</tr>
{/foreach}
</table>
</div>