aboutsummaryrefslogtreecommitdiffstats
path: root/templates/layerindex/recipedetail.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layerindex/recipedetail.html')
-rw-r--r--templates/layerindex/recipedetail.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/layerindex/recipedetail.html b/templates/layerindex/recipedetail.html
index 4164f11513..ef1eebaa41 100644
--- a/templates/layerindex/recipedetail.html
+++ b/templates/layerindex/recipedetail.html
@@ -148,6 +148,28 @@
</tbody>
</table>
+ <h2>Patches</h2>
+ {% if recipe.patch_set.exists %}
+ <table class="table table-striped table-bordered">
+ <thead>
+ <tr>
+ <th class="span6">Patch</th>
+ <th>Status</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for patch in recipe.patch_set.all %}
+ <tr>
+ <td><a href="{{ patch.vcs_web_url }}">{{ patch.src_path }}</a></td>
+ <td>{{ patch.get_status_display }} {{ patch.status_extra | urlize }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% else %}
+ <p>None</p>
+ {% endif %}
+
{% if appends %}
<h2>bbappends</h2>
<p>This recipe is appended by:</p>