Skip to content
Snippets Groups Projects
Commit 7c306d9f authored by Jared Hancock's avatar Jared Hancock
Browse files

ui: move built-in form icons to checkbox column

parent ba1b6a31
No related branches found
No related tags found
No related merge requests found
......@@ -29,26 +29,24 @@ $showing=$pageNav->showing().' forms';
<?php
foreach (UserForm::objects()->order_by('title') as $form) { ?>
<tr>
<td/>
<td><i class="icon-user"></i></td>
<td><a href="?id=<?php echo $form->get('id'); ?>">
<i class="icon-user"></i> <?php echo $form->get('title'); ?></a></td>
<?php echo $form->get('title'); ?></a>
<td><?php echo $form->get('updated'); ?></td>
</tr>
<?php }
foreach (TicketForm::objects()->order_by('title') as $form) { ?>
<tr>
<td/>
<td><i class="icon-ticket"></i></td>
<td><a href="?id=<?php echo $form->get('id'); ?>">
<i class="icon-ticket icon"></i>
<?php echo $form->get('title'); ?></a></td>
<td><?php echo $form->get('updated'); ?></td>
</tr>
<?php }
foreach (DynamicForm::objects()->filter(array('type'=>'C')) as $form) { ?>
<tr>
<td/>
<td><i class="icon-building"></i></td>
<td><a href="?id=<?php echo $form->get('id'); ?>">
<i class="icon-building icon"></i>
<?php echo $form->get('title'); ?></a></td>
<td><?php echo $form->get('updated'); ?></td>
</tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment