Show
Ignore:
Timestamp:
04/23/08 09:31:05 (2 years ago)
Author:
JensDiemer
Message:
  • page title
    • plugin_manager.handle_command() changes the page title, if it's not changes by the plugin themself.
    • remove some headlines in internal pages
    • set some title in plugins
  • add BasePlugin?.build_menu() - Used in show_internals (comes later)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/plugins_internal/admin_menu/admin_menu.py

    r1409 r1532  
    1818""" 
    1919 
     20from django.utils.translation import ugettext as _ 
    2021 
    2122from PyLucid.system.BasePlugin import PyLucidBasePlugin 
     
    4344        render the sub menu 
    4445        """ 
     46        # Change the global page title: 
     47        self.context["PAGE"].title = _("Administration sub menu") 
     48 
    4549        is_admin = self.request.user.is_superuser or self.request.user.is_staff 
    4650