aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-07-14 20:02:00 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-08-11 11:28:15 +0100
commit571e85416a955b7a450ec63475554010f68721b5 (patch)
treebda067e27d4ee352f73d8e28c2695500581a3edf /templates
parent3dfca5a25077c46f0750785e5b8e0eb81f11c253 (diff)
downloadopenembedded-core-contrib-571e85416a955b7a450ec63475554010f68721b5.tar.gz
Show appends in recipe detail
Show the appends in other layers that apply to the recipe. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/layerindex/recipedetail.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/layerindex/recipedetail.html b/templates/layerindex/recipedetail.html
index 4851e34f7e..17b992c05f 100644
--- a/templates/layerindex/recipedetail.html
+++ b/templates/layerindex/recipedetail.html
@@ -90,6 +90,23 @@
</tr>
</tbody>
</table>
+
+ {% if appends %}
+ <h2>bbappends</h2>
+ <p>This recipe is appended by:</p>
+ <table class="table table-bordered">
+ {% for append in appends %}
+ <tr>
+ <td>
+ <a href="{% url layer_item append.layerbranch.layer.name %}">{{ append.layerbranch.layer.name }}</a>
+ </td>
+ <td>
+ <a href="{{ append.vcs_web_url }}">{{ append.filename }}</a>
+ </td>
+ </tr>
+ {% endfor %}
+ </table>
+ {% endif %}
</div>
</div>