This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
/
user_updates.php
53 lines (43 loc) · 1.64 KB
/
user_updates.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
include_once("phplib/base.php");
$user_requested = (isset($_POST['username'])) ? $_POST['username'] : getUsername();
$page_title = getTeamName() . " Weekly Updates - Updates for {$user_requested}";
include_once('phplib/header.php');
include_once('phplib/nav.php');
?>
<div class="container">
<h1>All Weekly Updates <small>for user <?php echo $user_requested; ?></small></h1>
<div class="row">
<div class="span9">
<?php
$updates = getGenericWeeklyReportsForUser($user_requested);
if (!$updates) {
echo insertNotify("error", "This user doesn't appear to have any weekly updates!");
} else {
foreach ($updates as $update) {
$pretty_time = getPrettyTime($update['timestamp']);
$ending_date = date("l jS F Y", $update['range_end'] );
echo "<h3>Week ending {$ending_date} <small>written {$pretty_time}</small></h3>";
echo "<div class='well well-small'><p>{$update['report']}</p></div>";
}
}
?>
</div>
<div class="span3">
<h4>Choose person</h3>
<form id="setperson" action="<?php echo $ROOT_URL; ?>/user_updates.php" method="post">
<select name="username" onchange="this.form.submit()"><option></option>
<?php
$list_of_users = getListOfPeopleWithReports();
foreach($list_of_users as $user) {
$selected = ($user == $user_requested) ? " selected" : "";
echo "<option{$selected}>{$user}</option>";
}
?>
</select>
</form>
</div>
</div>
<?php include_once('phplib/footer.php'); ?>
</body>
</html>