# coding: utf-8
"""
PyLucid admin url patterns
~~~~~~~~~~~~~~~~~~~~~~~~~
Last commit info:
~~~~~~~~~~~~~~~~~
$LastChangedDate$
$Rev$
$Author:$
:copyleft: 2009 by the PyLucid team, see AUTHORS for more details.
:license: GNU GPL v3 or above, see LICENSE for more details.
"""
from django.conf import settings
from django.utils.translation import ugettext_lazy
from django.conf.urls.defaults import patterns,url
from pylucid_project.apps.pylucid.decorators import superuser_only
from blog import admin_views
urlpatterns = patterns('',
url(r'^new_blog_entry/$', admin_views.new_blog_entry, name='Blog-new_blog_entry'),
# url(r'^new_plugin_page$', superuser_only(admin_views.new_plugin_page), name='PageAdmin-new_plugin_page'),
#url(r'^view2$', admin_views.test2, name='extrahead-view2'),
)
|