template_content.py 446 B

1234567891011121314151617181920
  1. from extras.plugins import PluginTemplateExtension
  2. class SiteContent(PluginTemplateExtension):
  3. model = 'dcim.site'
  4. def left_page(self):
  5. return "SITE CONTENT - LEFT PAGE"
  6. def right_page(self):
  7. return "SITE CONTENT - RIGHT PAGE"
  8. def full_width_page(self):
  9. return "SITE CONTENT - FULL WIDTH PAGE"
  10. def full_buttons(self):
  11. return "SITE CONTENT - BUTTONS"
  12. template_extensions = [SiteContent]