diff options
author | Michael Elkins <melkins@tislabs.com> | 2012-01-20 17:04:14 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2012-01-20 17:04:14 +0000 |
commit | e31a361d8ab721bbd185f9c99bdaa172ad23f89d (patch) | |
tree | 53e3bc98c193581e6c1a032108fa355e28e54419 | |
parent | 72236eb7ce2fb65d3a04887fb57ea2145b8df0fa (diff) |
add styled warning message when there are no items in a generic list view
svn path=/branches/tk161/; revision=4249
-rw-r--r-- | rpkid/rpki/gui/app/templates/app/object_list.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rpkid/rpki/gui/app/templates/app/object_list.html b/rpkid/rpki/gui/app/templates/app/object_list.html index abcac6d1..f29f4a8c 100644 --- a/rpkid/rpki/gui/app/templates/app/object_list.html +++ b/rpkid/rpki/gui/app/templates/app/object_list.html @@ -17,7 +17,9 @@ {% endfor %} </ul> {% else %} -None +<div class='alert-message warning'> + <p>There are <strong>no items</strong> in this list. +</div> {% endif %} {% block actions %} |