Ejemplo n.º 1
0
                    <tfoot>
                        <tr>
                            <th scope="col" id="cb" class="manage-column column-cb  " style="width:20%;text-align:center">S.No</th>
                            
                            <th scope="col" class="manage-column"><?php 
_e("Form", "templatemerge");
?>
</th>
                            
                        </tr>
                    </tfoot>

                    <tbody class="list:user user-list">
                        <?php 
$forms = TemplateData::get_from_entries($paging);
// print_r($forms);
if (is_array($forms) && sizeof($forms) > 0) {
    $i = 0;
    foreach ($forms as $form) {
        ?>
                                <tr class='author-self status-inherit' valign="top">
                                    
                                    <td class="check-column" style="width:20%;text-align:center"><?php 
        echo ++$i;
        ?>
</td>
                                    <td class="column-date" style="font-weight:bold;color:#3D8CFF;font-size:14px">
                                    	<?php 
        $data = RGFormsModel::get_form($form["form_id"]);
        echo $data->title;