Ejemplo n.º 1
0
    }
    ?>

    <form class="form-horizontal search-form" method="get" action="/moving_obj.php">
        <div class="grey_box">
            <div class="row">
                <div class="col-sm-8">
                    <input type="hidden" name="id" value="<?php 
    echo $id;
    ?>
"/>
                    <input type="hidden" name="update" value="1"/>
                    <div class="form-section">
                        <span class="formlabel2">Categorise</span>
                        <?php 
    $getargs->makeFormSelect("category", $item_category, $const->item_categories, 0);
    ?>
                    </div>
                </div>
                <div class="col-sm-4">
                    <div style="padding:40px 0 40px 0;">
                        <button type="submit" class="btn btn-primary">Update</button>
                    </div>
                </div>
            </div>
        </div>
    </form>
<?php 
}
?>
Ejemplo n.º 2
0
            </button>
        </div>
        <div class="row">
            <div class="search-form-column col-lg-6">

                <div><span class="formlabel">Time of observation</span></div>
                <div class="tooltip-holder">
                    <span class="formlabel2">Between</span>

                    <div class="form-group-dcf"
                         data-toggle="tooltip" data-pos="tooltip-above"
                         title="Search for objects seen after this date and time."
                    >
                        <span style="display:inline-block; padding-right:20px;">
                        <?php 
$getargs->makeFormSelect("day1", $tmin['day'], range(1, 31), 0);
$getargs->makeFormSelect("month1", $tmin['mc'], $getargs->months, 0);
$getargs->makeFormSelect("year1", $tmin['year'], range($const->yearMin, $const->yearMax), 0);
print "</span><span>";
$getargs->makeFormSelect("hour1", $tmin['hour'], $getargs->hours, 0);
print "&nbsp;<b>:</b>&nbsp;";
$getargs->makeFormSelect("min1", $tmin['min'], $getargs->mins, 0);
?>
                        </span>
                    </div>
                </div>

                <div class="tooltip-holder">
                    <span class="formlabel2">and</span>

                    <div class="form-group-dcf"
Ejemplo n.º 3
0
                    </tbody>
                </table>
            </div>

        </div>

        <div class="col-md-2">
            <h4>Select month</h4>
            <form method="get" action="observatory_activity.php">
                <input type="hidden" name="id" value="<?php 
echo $obstory;
?>
">
                <?php 
html_getargs::makeFormSelect("month", $tmin['mc'], $getargs->months, 0);
html_getargs::makeFormSelect("year", $tmin['year'], range($const->yearMin, $const->yearMax), 0);
?>
                <br/>
                <input class="btn btn-primary" style="margin:12px;" type="submit" name="Update" value="Update">
            </form>

            <div style="padding-top:25px;">
                <?php 
$pageTemplate->listObstories($obstories, "observatory_activity.php?year={$tmin['year']}&month={$tmin['mc']}&id=");
?>
            </div>

        </div>
    </div>

<?php