00eade6333
git-svn-id: https://samskivert.googlecode.com/svn/trunk@1064 6335cc39-0255-0410-8fd6-9bcaacd3b74c
45 lines
1005 B
Plaintext
45 lines
1005 B
Plaintext
#set ($title = $i18n.xlate("detail.title"))
|
|
#import ("/header.wm")
|
|
|
|
<p>
|
|
|
|
<table cellpadding="2" cellspacing="0" border="0" width="60%">
|
|
<tr bgcolor="$scolor"><td colspan="4" align="left">$task.complexity</td></tr>
|
|
|
|
<form action="index.wm">
|
|
$form.fixedHidden("task", "$task.taskId")
|
|
|
|
<tr><td>
|
|
#if ($task.owner)
|
|
#if ($username == $task.owner)
|
|
$form.imageSubmit("submit", "", "images/complete.png", "Mark as completed")
|
|
#else
|
|
|
|
#end
|
|
#else
|
|
$form.imageSubmit("action", "claim", "images/claim.png", "Claim this task")
|
|
#end
|
|
</td>
|
|
|
|
<td>$task.summary
|
|
<span class="small">[$task.creator]</span>
|
|
</td>
|
|
<td valign="top">$task.category</td>
|
|
<td valign="top"><a href="edit.wm?task=$task.taskId">
|
|
<img src="images/edit.png" border="0"></a></td>
|
|
</tr>
|
|
|
|
#if (!$string.blank($notes))
|
|
<tr><td colspan="4"> </td></tr>
|
|
<tr><td style="border-bottom: 1px, solid" colspan="4"><i>Notes</i></td></tr>
|
|
<tr><td> </td>
|
|
<td colspan="3">
|
|
<pre>$notes</pre>
|
|
</td></tr>
|
|
#end
|
|
|
|
</form>
|
|
</table>
|
|
|
|
#import ("/footer.wm")
|