~fabiocbalbuquerque/sahana-agasti/web-services

« back to all changes in this revision

Viewing changes to apps/frontend/modules/admin/templates/globalsSuccess.php

  • Committer: Chad Heuschober
  • Date: 2011-06-06 13:37:45 UTC
  • mfrom: (1.1.1244 trunk)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: chad.heuschober@mail.cuny.edu-20110606133745-850mdvnjtv392zta
Pulled in most recent batch of changes from the cuny sps trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
  <thead>
8
8
    <tr>
9
9
      <th>Global Param</th>
10
 
      <th>Description</th>
 
10
      <th>Value</th>
11
11
    </tr>
12
12
  </thead>
13
13
  <tbody>
14
14
    <?php foreach ($ag_global_params as $ag_global_param): ?>
15
15
    <tr>
16
 
      <td><a href="<?php echo url_for('admin/globals?param='.$ag_global_param->getId()) ?>" class="linkButton"><?php echo $ag_global_param->getDatapoint() ?></a></td>
 
16
      <td><a href="<?php echo url_for('admin/globals?param='.$ag_global_param->getId()) ?>" class="continueButton"><?php echo $ag_global_param->getDatapoint() ?></a></td>
17
17
      <td><?php echo $ag_global_param->getValue() ?></td>
18
18
    </tr>
19
19
    <?php endforeach; ?>