Exemple #1
0
                </td>
                <td>
                    <div class="form-row">
                        <label for="title">To Date:</label>
                        <?php 
echo input_date_tag('to_date', 'now', 'rich=true');
?>
                    </div>
                </td>
            </tr>
            <tr>
                <td>
                    <div class="form-row">
                        <label for="title">Route:</label>
                        <?php 
echo select_tag('user_ride_id', objects_for_select(UserRidesPeer::getUserRidesWithAll(), 'getUserRideId', 'getDescription', $route), array('style' => 'width:150px'));
?>
                    </div>
                </td>
                <td>
                    <div class="form-row">
                        <label for="units">Chart Type:</label>
                        <?php 
echo radiobutton_tag('chart[]', 'Bar', false);
?>
                        <label for="units">Bar</label>
                        <?php 
echo radiobutton_tag('chart[]', 'Line', true);
?>
                        <label for="units">Line</label>
                        <?php