diff --git a/.bzrignore b/.bzrignore
index d67192d..a41572f 100644
--- a/.bzrignore
+++ b/.bzrignore
@@ -1,2 +1,3 @@
dev_setup/mmtest.db
dev_setup/settings_local.py
+src/postorius.egg-info
diff --git a/dev_setup/urls.py b/dev_setup/urls.py
index de87e62..a1a5e9f 100644
--- a/dev_setup/urls.py
+++ b/dev_setup/urls.py
@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License along with
# GNU Mailman. If not, see .
-import mailmanweb
+import postorius
from django.conf.urls.defaults import *
from django.conf import settings
@@ -32,7 +32,7 @@
# from mailman_django import urls as mailman_urls
urlpatterns = patterns('',
- url(r'^$', 'mailmanweb.views.list_index'),
- (r'^mailmanweb/', include('mailmanweb.urls')),
+ url(r'^$', 'postorius.views.list_index'),
+ (r'^postorius/', include('postorius.urls')),
url(r'', include('social_auth.urls')),
)
diff --git a/src/postorius/context_processors.py b/src/postorius/context_processors.py
index f94516d..ce1baeb 100644
--- a/src/postorius/context_processors.py
+++ b/src/postorius/context_processors.py
@@ -10,14 +10,14 @@
logger = logging.getLogger(__name__)
-def mailmanweb(request):
+def postorius(request):
"""Add template variables to context.
"""
# extend_template (no page header/footer when requested via AJAX)
if request.is_ajax():
- extend_template = "mailmanweb/base_ajax.html"
+ extend_template = "postorius/base_ajax.html"
else:
- extend_template = "mailmanweb/base.html"
+ extend_template = "postorius/base.html"
return {
'MAILMAN_THEME': settings.MAILMAN_THEME,
diff --git a/src/postorius/templates/postorius/base.html b/src/postorius/templates/postorius/base.html
index 00c55b7..645e280 100644
--- a/src/postorius/templates/postorius/base.html
+++ b/src/postorius/templates/postorius/base.html
@@ -8,12 +8,12 @@
-
-
+
+
-
-
-
+
+
+
@@ -21,7 +21,7 @@