diff --git a/apps/main/templates/base.html b/apps/main/templates/base.html index ef31ca0382..deb03b7fb6 100644 --- a/apps/main/templates/base.html +++ b/apps/main/templates/base.html @@ -6,6 +6,7 @@ {% load search_tags %} {% load main_settings_tags %} {% load variable_tags %} +{% load registration_tags %} {% block web_theme_head %} {% if new_window_url %} @@ -25,7 +26,7 @@ {% block html_title %}{% project_name %}{{ request.new_window_url }}{% block title %}{% endblock %}{% endblock %} {% get_main_setting "SIDE_BAR_SEARCH" as debug %} -{% block web_theme_project_name %}{% project_name %}{% if debug %} {% trans "(DEBUG)" %} {% endif %}{% endblock %} +{% block web_theme_project_name %}{% project_name %}{% if debug %} {% trans "(DEBUG)" %} - {% registered_name %}{% endif %}{% endblock %} {% block web_theme_stylesheets %} diff --git a/docs/releases/0.12.3.rst b/docs/releases/0.12.3.rst index 460e322d80..3c0802fa15 100644 --- a/docs/releases/0.12.3.rst +++ b/docs/releases/0.12.3.rst @@ -80,6 +80,7 @@ Migrate existing database schema with:: $ ./manage.py migrate metadata $ ./manage.py migrate bootstrap $ ./manage.py migrate documents + $ ./manage.py migrate registration Add new static media:: diff --git a/settings.py b/settings.py index 7e7d037fac..8bac4f4486 100644 --- a/settings.py +++ b/settings.py @@ -182,6 +182,7 @@ INSTALLED_APPS = ( 'document_signatures', 'checkouts', 'bootstrap', + 'registration', # Has to be last so the other apps can register it's signals 'signaler', ) diff --git a/urls.py b/urls.py index b2d5ccd4f3..762d51b6c7 100644 --- a/urls.py +++ b/urls.py @@ -35,6 +35,7 @@ urlpatterns = patterns('', (r'^installation/', include('installation.urls')), (r'^scheduler/', include('scheduler.urls')), (r'^bootstrap/', include('bootstrap.urls')), + (r'^registration/', include('registration.urls')), )