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

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

Updated admin css, tweaked services html.

File size: 766 bytes
RevLine 
[42]1<div id="commandbox">
[270]2<span class="sc-nowrap commanditem"><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)) { ?>
[270]4    <span class="sc-nowrap commanditem"><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)) { ?>
[270]9<table class="list">
[1]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.