~fabiocbalbuquerque/sahana-agasti/web-services

« back to all changes in this revision

Viewing changes to apps/frontend/modules/profile/templates/indexSuccess.php

  • Committer: Chad Heuschober
  • Date: 2011-08-04 00:05:46 UTC
  • mto: (1.26.1 push-trunk)
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: chad.heuschober@mail.cuny.edu-20110804000546-4dqh6a7xrkrwccdh
Moved around some data fixtures to put the regular fixtures into more of a production-ready state.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<table class="staffTable">
2
 
        <caption>Web Service Cients</caption>
3
 
  <thead>
4
 
    <tr class="head">
5
 
      <th>Id</th>
6
 
      <th>User</th>
7
 
      <th>Token</th>
8
 
      <th>Is webservice client</th>
9
 
      <th>Is active</th>
10
 
      <th>Created at</th>
11
 
      <th>Updated at</th>
12
 
    </tr>
13
 
  </thead>
14
 
  <tbody>
15
 
    <?php foreach ($sf_guard_user_profiles as $sf_guard_user_profile): ?>
16
 
    <tr>
17
 
      <td><a href="<?php echo url_for('profile/edit?id='.$sf_guard_user_profile->getId()) ?>"><?php echo $sf_guard_user_profile->getId() ?></a></td>
18
 
      <td><?php echo $sf_guard_user_profile->getUserId() ?></td>
19
 
      <td><?php echo $sf_guard_user_profile->getToken() ?></td>
20
 
      <td><?php echo $sf_guard_user_profile->getIsWebserviceClient() ?></td>
21
 
      <td><?php echo $sf_guard_user_profile->getIsActive() ?></td>
22
 
      <td><?php echo $sf_guard_user_profile->getCreatedAt() ?></td>
23
 
      <td><?php echo $sf_guard_user_profile->getUpdatedAt() ?></td>
24
 
    </tr>
25
 
    <?php endforeach; ?>
26
 
  </tbody>
27
 
</table>
28
 
<br>
29
 
<div>
30
 
  <a href="<?php echo url_for('profile/new') ?>" class="continueButton">New</a>
31
 
</div>
 
 
b'\\ No newline at end of file'