aboutsummaryrefslogtreecommitdiff
path: root/mod/tasklist/views/default/tasklist/item.php
blob: a2225300fa88e99b32f8d2265b9d345c58686390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<tr>
	<td><b><?php echo $vars['task'] ?></b></td>
	
	<td>
		<?php if ($vars['status']=='done')
			echo "done";
		else
		{
?>
			<form method = "post">
				<input type="hidden" name="action" value="tick" />
				<input type="hidden" name="status" value="done" />
				<input type="hidden" name="owner_id" value="<?php echo $vars['owner_id']; ?>"/>
				<input type="hidden" name="guid" value="<?php echo $vars['guid']; ?>"/>
				<input type="submit" name="Done" value="Done" />
			</form>
<?php
		}
?>
	</td>
</tr>