Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.45 KB | None | 0 0
  1. {% extends "admin:admin/base_site.html" %}
  2. {#{% extends "admin/base_site.html" %}#}
  3. {% load admin_tools_menu_tags %}
  4. {% block extrastyle %}
  5.     {{ block.super }}
  6.     {% if user.is_active and user.is_staff and not is_popup %}{% admin_tools_render_menu_css %}{% endif %}
  7. {% endblock %}
  8. {% block nav-global %}
  9.     {{ block.super }}
  10.     {% if user.is_active and user.is_staff and not is_popup %}{% admin_tools_render_menu %}{% endif %}
  11. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement