relocated log tables into another panel in site home and project home

This commit is contained in:
hyung-hwan 2015-04-19 16:31:07 +00:00
parent 60de017146
commit 0b570f334b
2 changed files with 5 additions and 1 deletions

View File

@ -181,6 +181,7 @@ foreach ($urls as $url)
</div> </div>
<?php <?php
print '<div id="project_home_sidebar_log_table_container" class="collapsible-box-panel">';
print '<table id="project_home_sidebar_log_table" class="collapsible-box-table">'; print '<table id="project_home_sidebar_log_table" class="collapsible-box-table">';
if (count($log_entries) > 0) if (count($log_entries) > 0)
@ -293,7 +294,8 @@ foreach ($urls as $url)
printf ('<tr><td>%s</td></tr>', $this->lang->line('PROJECT_MSG_NO_CHANGE_LOG')); printf ('<tr><td>%s</td></tr>', $this->lang->line('PROJECT_MSG_NO_CHANGE_LOG'));
} }
print "</table>"; print '</table>';
print '</div>';
?> ?>
</div> </div>

View File

@ -139,6 +139,7 @@ foreach ($latest_projects as $project)
<span id="site_home_sidebar_log_all_span"><a href='#' id="site_home_sidebar_log_all_button"><?php print $this->lang->line('All'); ?></a></span> <span id="site_home_sidebar_log_all_span"><a href='#' id="site_home_sidebar_log_all_button"><?php print $this->lang->line('All'); ?></a></span>
</div> </div>
<div id="site_home_sidebar_log_table_container" class="collapsible-box-panel">
<table id="site_home_sidebar_log_table" class="collapsible-box-table"> <table id="site_home_sidebar_log_table" class="collapsible-box-table">
<?php <?php
$xdot = $this->converter->AsciiToHex ('.'); $xdot = $this->converter->AsciiToHex ('.');
@ -268,6 +269,7 @@ foreach ($latest_projects as $project)
} }
?> ?>
</table> </table>
</div>
</div> <!-- box --> </div> <!-- box -->
</div> <!-- site_home_sidebar --> </div> <!-- site_home_sidebar -->