Browse Source

Add change message as tooltip to recent action dashboard module.

Michael Kutý 8 years ago
parent
commit
ea8b94edb7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      jet/dashboard/templates/jet.dashboard/modules/recent_actions.html

+ 2 - 2
jet/dashboard/templates/jet.dashboard/modules/recent_actions.html

@@ -31,9 +31,9 @@
                     {% endif %}
 
                     {% if entry.is_deletion or not entry.get_admin_url %}
-                        {{ entry.object_repr }}
+                        <span class="tooltip" title="{{ entry.change_message }}">{{ entry.object_repr }}</span>
                     {% else %}
-                        <a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>
+                        <a title="{{ entry.change_message }}" class="tooltip" href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>
                     {% endif %}
                 </div>
             </li>