mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
In order to remain up to date with the relevant technologies,
Toaster is updated with this patch to Django 1.5. This also
makes headways to allow usage of emerging
Django-related technologies.
Changes include the startup script Django version check, usage
of TemplateView instead of deprecated simple function to do
redirects, and update to the new form of the _url_ template tag.
Support for Django 1.4.5 is now deprecated.
[YOCTO #5558]
(Bitbake rev: 2d37a1731a2b681bc976f3f391d65abb7745b6f9)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
887 B
HTML
35 lines
887 B
HTML
{% extends "basetable.html" %}
|
|
|
|
{% block pagename %}
|
|
<h1>Toaster - Layers</h1>
|
|
{% endblock %}
|
|
|
|
{% block pagetable %}
|
|
{% load projecttags %}
|
|
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Local Path</th>
|
|
<th>Layer Index URL</th>
|
|
<th>Known Versions</th>
|
|
</tr>
|
|
|
|
{% for layer in layers %}
|
|
|
|
<tr class="data">
|
|
<td>{{layer.name}}</td>
|
|
<td>{{layer.local_path}}</td>
|
|
<td><a href='{{layer.layer_index_url}}'>{{layer.layer_index_url}}</a></td>
|
|
<td><table>
|
|
{% for lv in layer.versions %}
|
|
<tr><td>
|
|
<a href="{% url "layer_versions_recipes" lv.id %}">({{lv.priority}}){{lv.branch}}:{{lv.commit}} ({{lv.count}} recipes)</a>
|
|
</td></tr>
|
|
{% endfor %}
|
|
</table></td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|