foreach ($registrations as $registration) {
    ?>
                <tr class="registration_row data_row style1 <?php 
    echo $registration->activated ? '' : 'disabled';
    ?>
">
                    <td class="user_name" align="center"><?php 
    echo $registration->user_display_name;
    ?>
</td>
                    <td class="clicker_id" align="center"><?php 
    echo $registration->clicker_id;
    ?>
</td>
                    <td class="date" align="center"><?php 
    echo iclicker_service::df($registration->timecreated);
    ?>
</td>
                    <td class="controls" align="center">
                        <form method="post">
                            <input type="hidden" name="page" value="<?php 
    echo $page;
    ?>
"/>
                            <input type="hidden" name="sort" value="<?php 
    echo $sort;
    ?>
"/>
                            <input type="hidden" name="search" value="<?php 
    echo $search;
    ?>
                        <th><?php 
    echo iclicker_service::msg('reg.registered.date.header');
    ?>
</th>
                        <th>&nbsp;</th>
                    </tr>
                    <?php 
    foreach ($regs as $reg) {
        ?>
                    <tr>
                        <td><?php 
        echo $reg->clicker_id;
        ?>
</td>
                        <td><?php 
        echo iclicker_service::df($reg->timecreated);
        ?>
</td>
                        <td>
                            <form method="post" style="display: inline;">
                                <input type="hidden" name="remove" value="remove" />
                                <input type="hidden" name="registrationId" value="<?php 
        echo $reg->id;
        ?>
" />
                                <input type="submit" class="small" value="<?php 
        echo iclicker_service::msg('app.remove');
        ?>
" alt="<?php 
        echo iclicker_service::msg('reg.remove.submit.alt');
        ?>