alesdotio / django-admin-shortcuts

Add simple and pretty shortcuts to the django admin homepage.
Other
205 stars 53 forks source link

Usage of ``count`` and ``count_new`` at the same time. #14

Closed philippeowagner closed 9 years ago

philippeowagner commented 10 years ago

It would be useful to be able to use count and count_new at the same time. For example by placing the count value just below the title.

alesdotio commented 10 years ago

You could copy the template templates/admin_shortcuts/base.css into your project and add something like this line in the extra block:

{% block extra %}
.admin_shortcuts .shortcuts li a .count { right: auto; left: 3px; }
{% endblock %}

Haven't tested it, but you should get the idea ;)