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

Last change on this file since 365 was 365, checked in by quinn, 14 years ago
File size: 777 bytes
Line 
1<div id="commandbox">
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>
3<?php if (!getFormData('current', false)) { ?>
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>
5<?php } ?>
6</div>
7
8<?php if (is_array($data) && !empty($data)) { ?>
9<table class="list">
10<?php
11while ((list($k, $v_d) = each($data))) {
12    ?>
13    <tr>
14        <td class="sc-padleft sc-nowrap"><label><?php echo $k; ?></label></td>
15        <td class="sc-padleft"><pre><?php echo $v_d; ?></pre></td>
16    </tr>
17<?php } ?>
18</table>
19<?php } ?>
Note: See TracBrowser for help on using the repository browser.