Parent: [94e99d] (diff)

Child: [7423e0] (diff)

Download this file

ticket.html    63 lines (59 with data), 3.1 kB

 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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="${g.pyforge_templates}/master.html"/>
<xi:include href="${c.app.templates}/lib.html" />
<?python from pyforge import model as M?>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
<title>#$ticket.ticket_num $ticket.summary</title>
<link rel="stylesheet" type="text/css" href="${g.app_static('css/hilite.css')}"/>
<link rel="stylesheet" type="text/css" href="${g.app_static('css/tracker.css')}"/>
<link rel="alternate" type="application/rss+xml" title="RSS" href="feed.rss"/>
<link rel="alternate" type="application/atom+xml" title="Atom" href="feed.atom"/>
</head>
<body>
<div class="span-14">
<div class="span-2">
${gravatar(ticket.reported_by().preferences.email_address, size=50)}<br/>
<py:if test="ticket.assigned_to()">${gravatar(ticket.assigned_to().preferences.email_address, size=50)}</py:if>
</div>
<div class="span-12 last">
<h2 class="ticket_title">#$ticket.ticket_num $ticket.summary</h2>
Created by <a href="${ticket.reported_by().url()}">${ticket.reported_by().display_name}</a> ${h.ago(ticket.created_date, round=True)}<br/>
Currently assigned to
<py:if test="not ticket.assigned_to()">${ticket.assigned_to_name()}</py:if>
<a py:if="ticket.assigned_to()" href="${ticket.assigned_to().url()}">${ticket.assigned_to_name()}</a>
<p>
<a href="${ticket.email_link('#%s' % ticket.ticket_num)}">Email Ticket</a>
</p>
<div py:content="Markup(g.markdown.convert(ticket.description))"/>
${list_attachments(list(ticket.attachments), False)}
</div>
</div>
<div id="sidebar-right" class="span-5 last">
<a class="ticket_feed" href="${ticket.url()}feed.rss"><img src="/images/rss.png" alt="subscribe" title="subscribe" width="25" height="25"/></a>
Status: $ticket.status<br/>
<div class="tags" py:if="len(ticket.tags)">
Tags: <span py:for="tag in ticket.tags">
$tag.tag (${ticket.artifacts_tagged_with(tag.tag).count()})
</span>
</div>
Milestone: $ticket.milestone<br/>
<py:for each="field in globals.custom_fields or []">
${field.label}: ${ticket.custom_fields.get(field.name, '')}<br/>
</py:for>
&nbsp;<br/>
<a href="#comment">Leave a Comment</a><br/>
<a href="edit">Edit this Ticket</a>
</div>
<hr/>
<div py:with="thread=ticket.discussion_thread()" id="#comment">
<h2><a href="${thread.url()}">Discussion</a></h2>
${c.thread.display(value=thread)}
</div>
<script type="text/javascript" src="${g.app_static('js/comments.js')}"/>
</body>
</html>