adding a notice for when there are no images, so the page isnt just blank

This commit is contained in:
Jake Dahn 2011-09-29 17:23:01 -07:00
parent a5816d684d
commit 69496de110

View File

@ -16,5 +16,10 @@
{% if images %}
{% include 'django_openstack/dash/images/_list.html' %}
{% endif %}
{% else %}
<div class="message_box info">
<h2>Info</h2>
<p>There are currently no images.</p>
</div>
{% endif %}
{% endblock %}