summaryrefslogtreecommitdiffstats
path: root/tpl/package.tpl
blob: e6e35a270ec5207372550854ce1611162833933c (plain)
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
{{{header}}}
    <div id="main">
        <div class="panel panel-default">
            <div class="panel-heading">Package details</div>
            <div class="panel-body">
            </div>
            <table class="table table-striped table-bordered table-condensed" id="package">
                {{#name}}
                <tr>
                    <th>Name</th>
                    <td title="{{{desc}}}"><a href="/package/{{{name}}}">{{{name}}}</a></td>
                </tr>
                <tr>
                    <th>Version</th>
                    <td>{{{version}}}</td>
                </tr>
                <tr>
                    <th>Project</th>
                    <td><a href="{{{url}}}">URL</a></td>
                </tr>
                <tr>
                    <th>Licence</th>
                    <td>{{{lic}}}</td>
                </tr>
                <tr>
                    <th>Architecture</th>
                    <td>{{{arch}}}</td>
                </tr>
                <tr>
                    <th>Repository</th>
                    <td>Repository</td>
                </tr>
                <tr>
                    <th>Maintainer</th>
                    <td>{{{maintainer}}}</td>
                </tr>
                <tr>
                    <th>Build date</th>
                    <td>{{{build_time}}}</td>
                </tr>
                {{#install_if}}
                <tr>
                    <th>Install if</th>
                    <td>{{{install_if}}}</td>
                </tr>
                {{/install_if}}
                {{/name}}
                {{^name}}
                <tr>
                    <td>This package does not exist!</td>
                </tr>
                {{/name}}
            </table>
        </div>
    </div>
{{{footer}}}