aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 97fa453e0e346a2cc5f9f05eba7925f2be98eb83 (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
<!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.1/jquery.min.js"></script>
        <script type="text/javascript" src="/static/scripts/jquery.corners.min.js"></script>
        <script type="text/javascript">
            $(function() {
                $('#content-pane').corners('bottom 8px');
                
                $('#external-pane').hide();
                $('#external-pane-content').corners('bottom 8px');
                
                $('#filter-assignee').click(function() {
                    $('#external-pane-content').html($('#assignees').html());
                    $('#external-pane').fadeIn('fast');
                });
                
                $('table tr:odd').addClass('stripe');
            });
        </script>
    </head>
    
    <body>
        <div id="logo"><h1>Cherry Flavored Bugs Everywhere!</h1></div>
        <div id="header">
            <div class="center-column">
                <h1>{{ repository_name }}</h1>
            </div>
        </div>
        <div id="content-wrap">
            <div id="content-pane" class="center-column">
                <div id="nav">
                    <span id="filters">
                        Just show me:
                        <a href="/">Open</a>
                        <a href="/?status=closed">Closed</a>
                        <a href="#" id="filter-assignee">Assigned to...</a>
                        <a href="#">Scheduled for...</a>
                    </span>
                    <span id="create">
                        <a href="fixme">&#43; Create a new bug</a>
                    </span>
                </div>
                <h2>{% block page_title %}&nbsp;{% endblock %}</h2>
                {% block content %}{% endblock %}
            </div>
            <div id="footer" class="center-column">
                <p>
                    Site by <a href="http://stevelosh.com">Steve</a>.
                    Built with <a href="http://cherrypy.org">CherryPy</a>.
                    Templates by <a href="http://jinja.pocoo.org/2/">Jinja2</a>.
                    I've asked <a href="http://fecklessmind.com/2009/01/20/aardvark-css-framework/">aardvarks</a> for help.
                </p>
            </div>
        </div>
        <div id="external-pane">
            <div id="external-pane-content"></div>
        </div>
        <div id="assignees">
            <p>
                <a href="/?assignee=None">Unassigned</a><br /><br />
                {% for assignee in assignees %}
                    <a href="/?assignee={{ assignee|e }}">{{ assignee|e }}</a><br />
                {% endfor %}
            </p>
        </div>
    </body>
</html>