aboutsummaryrefslogtreecommitdiffstats
path: root/templates/layerindex/recipes.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layerindex/recipes.html')
-rw-r--r--templates/layerindex/recipes.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/layerindex/recipes.html b/templates/layerindex/recipes.html
index 322d7c6fdd..c2141a4073 100644
--- a/templates/layerindex/recipes.html
+++ b/templates/layerindex/recipes.html
@@ -52,7 +52,7 @@
<tbody>
{% for recipe in recipe_list %}
<tr {% if recipe.preferred_count > 0 %}class="muted"{% endif %}>
- <td><a href="{% url recipe recipe.id %}">{{ recipe.name }}</a>{% if 'image' in recipe.inherits.split %}<i class="icon-hdd"></i>{% endif %}</td>
+ <td><a href="{% url recipe recipe.id %}">{{ recipe.name }}</a>{% if 'image' in recipe.inherits.split %}<i class="icon-hdd"></i>{% endif %}{% if recipe.blacklisted %}<span class="label label-inverse" title="{{ recipe.blacklisted }}">blacklisted</span>{% endif %}</td>
<td>{{ recipe.pv }}</td>
<td>{{ recipe.short_desc }}</td>
<td><a href="{% url layer_item url_branch recipe.layerbranch.layer.name %}">{{ recipe.layerbranch.layer.name }}</a></td>
@@ -84,6 +84,7 @@
firstfield.focus()
$('.icon-hdd').tooltip({title:"Inherits image"});
+ $('.label-inverse').tooltip();
});
</script>
{% endblock %}