blob: 9666d3e23bdfffd2703995d1991c47fccd017b06 (
plain) (
blame)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Cherry Flavored Bugs Everywhere!</title>
<link rel="stylesheet" type="text/css" media="screen"
href="/static/style/aal.css" />
<link rel="stylesheet" type="text/css" media="screen"
href="/static/style/cfbe.css" />
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
</script>
<script type="text/javascript"
src="/static/scripts/jquery.corners.min.js">
</script>
<script type="text/javascript">
$(function() {
$('#filter-assignee').click(function(e) {
$('#filter-pane').html($('#assignees').html());
$('#filter-pane').fadeIn('fast');
e.preventDefault();
});
$('#filter-target').click(function(e) {
$('#filter-pane').html($('#targets').html());
$('#filter-pane').fadeIn('fast');
e.preventDefault();
});
$('#create-bug').click(function(e) {
$('#create-bug').hide();
$('#create-form').fadeIn('fast');
e.preventDefault();
});
$('table tr:odd').addClass('stripe');
});
</script>
{% block script %}{% endblock %}
</head>
<body>
<div id="main-pane">
<div id="header" class="inside-main-pane">
<h1>{{ repository_name }}</h1>
</div>
<div id="navigation" class="inside-main-pane">
<span id="filters">
<a href="/">Open</a>
<a href="/?status=closed">Closed</a>
<a href="" id="filter-assignee">Assigned to...</a>
<a href="" id="filter-target">Scheduled for...</a>
</span>
<span id="create">
<a href="" id="create-bug">+ Create a new bug</a>
</span>
<span id="create-form">
<form action="/create" method="post">
<fieldset>
<input type="text"
id="create-summary" name="summary" />
<button id="create-button"
type="submit">Create</button>
</fieldset>
</form>
</span>
</div>
<div id="filter-pane" class="inside-main-pane"></div>
<div id="content-pane" class="inside-main-pane">
<h2>{% block page_title %} {% endblock %}</h2>
{% block content %}{% endblock %}
</div>
<div id="footer" class="inside-main-pane">
<p>
<a href="">Cherry Flavored Bugs Everywhere</a>
was created by <a href="http://stevelosh.com">Steve Losh</a> and a very nice <a href="http://fecklessmind.com/2009/01/20/aardvark-css-framework/">aardvark</a>
using <a href="http://cherrypy.org">CherryPy</a>,
<a href="http://jinja.pocoo.org/2/">Jinja2</a>,
and <a href="http://jquery.com">jQuery</a>.
</p>
</div>
</div>
<div id="assignees">
<ul class="filter-items">
<li><a href="/?assignee=None">Unassigned</a></li>
{% for assignee in assignees %}
{% if assignee != "None" %}
<li><a href="/?assignee={{ assignee|e }}">{{ assignee|e }}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
<div id="targets">
<ul class="filter-items">
<li><a href="/?target=None">Unscheduled</a></li>
{% for target in targets %}
<li><a href="/?target={{ target }}">{{ target }}</a></li>
{% endfor %}
</ul>
</div>
</body>
</html>
|