summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/recipes.html
blob: 2e0c2d1c6d383249fc15ca4c3039952b34627fb8 (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
{% extends "basebuildpage.html" %}

{% block localbreadcrumb %}
<li>Recipes</li>
{% endblock %}

{% block buildinfomain %}
<div class="row-fluid pull-right span10">
{% include "basetable_top.html" %}

        <tr>
        </tr>
            <th>Name</th>
            <th>Version</th>
            <th>Summary</th>
            <th>Description</th>
            <th>Section</th>
            <th>License</th>
            <th>License file</th>
            <th>Homepage</th>
            <th>Bugtracker</th>
            <th>File_path</th>
            <th style="width: 30em">Recipe Dependency</th>


        {% for recipe in objects %}

        <tr class="data">
            <td><a name="{{recipe.name}}" href="{% url "recipe" build.pk recipe.pk %}">{{recipe.name}}</a></td>
            <td>{{recipe.version}}</td>
            <td>{{recipe.summary}}</td>
            <td>{{recipe.description}}</td>
            <td>{{recipe.section}}</td>
            <td>{{recipe.license}}</td>
            <td>{{recipe.licensing_info}}</td>
            <td>{{recipe.homepage}}</td>
            <td>{{recipe.bugtracker}}</td>
            <td>{{recipe.file_path}}</td>
            <td>
        <div style="height: 5em; overflow:auto">
            {% for rr in recipe.r_dependencies_recipe.all %}
                <a href="#{{rr.depends_on.name}}">{{rr.depends_on.name}}</a><br/>
            {% endfor %}
        </div>
            </td>
        </tr>

        {% endfor %}

{% include "basetable_bottom.html" %}
</div>
{% endblock %}