source: trunk/services/templates/versions_view.ihtml @ 257

Last change on this file since 257 was 254, checked in by quinn, 17 years ago

Various bug fixes to make compatible with Trendease 2.0.

  • Minor CSS admin tweaks.
  • PHP Notice warnings.
  • Minor bugs fixed.
File size: 809 bytes
RevLine 
[42]1<div id="commandbox">
[254]2<span class="sc-nowrap commandtext"><a href="<?php echo $app->ohref(oTxt($_SERVER['PHP_SELF'])); ?>"><?php echo _("Back to the Versions List"); ?></a></span>
[1]3<?php if (!getFormData('current', false)) { ?>
[136]4    <span class="sc-nowrap commandtext"><a href="<?php echo $app->oHREF($_SERVER['PHP_SELF'] . '?op=restore', array('version_id', 'version_title')); ?>"><?php echo _("Restore this saved version"); ?></a></span>
[1]5<?php } ?>
6</div>
7
8<?php if (is_array($data) && !empty($data)) { ?>
9<table class="list" border="0" cellspacing="0" cellpadding="4">
10<?php
[42]11while ((list($k, $v_d) = each($data))) {
[1]12    ?>
13    <tr>
[121]14        <td class="sc-padleft sc-nowrap"><label><?php echo $k; ?></label></td>
15        <td class="sc-padleft"><?php echo $v_d; ?></td>
[1]16    </tr>
17<?php } ?>
18</table>
19<?php } ?>
Note: See TracBrowser for help on using the repository browser.