Initial updates for the registration app

This commit is contained in:
Roberto Rosario
2012-10-09 02:32:09 -04:00
parent e3cc2efbcb
commit 66cd8938ce
4 changed files with 5 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
{% load search_tags %} {% load search_tags %}
{% load main_settings_tags %} {% load main_settings_tags %}
{% load variable_tags %} {% load variable_tags %}
{% load registration_tags %}
{% block web_theme_head %} {% block web_theme_head %}
{% if new_window_url %} {% if new_window_url %}
@@ -25,7 +26,7 @@
{% block html_title %}{% project_name %}{{ request.new_window_url }}{% block title %}{% endblock %}{% endblock %} {% block html_title %}{% project_name %}{{ request.new_window_url }}{% block title %}{% endblock %}{% endblock %}
{% get_main_setting "SIDE_BAR_SEARCH" as debug %} {% 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 %} {% block web_theme_stylesheets %}
<link rel="stylesheet" href="{{ STATIC_URL }}css/famfamfam-silk-sprite.css" type="text/css" media="screen" /> <link rel="stylesheet" href="{{ STATIC_URL }}css/famfamfam-silk-sprite.css" type="text/css" media="screen" />

View File

@@ -80,6 +80,7 @@ Migrate existing database schema with::
$ ./manage.py migrate metadata $ ./manage.py migrate metadata
$ ./manage.py migrate bootstrap $ ./manage.py migrate bootstrap
$ ./manage.py migrate documents $ ./manage.py migrate documents
$ ./manage.py migrate registration
Add new static media:: Add new static media::

View File

@@ -182,6 +182,7 @@ INSTALLED_APPS = (
'document_signatures', 'document_signatures',
'checkouts', 'checkouts',
'bootstrap', 'bootstrap',
'registration',
# Has to be last so the other apps can register it's signals # Has to be last so the other apps can register it's signals
'signaler', 'signaler',
) )

View File

@@ -35,6 +35,7 @@ urlpatterns = patterns('',
(r'^installation/', include('installation.urls')), (r'^installation/', include('installation.urls')),
(r'^scheduler/', include('scheduler.urls')), (r'^scheduler/', include('scheduler.urls')),
(r'^bootstrap/', include('bootstrap.urls')), (r'^bootstrap/', include('bootstrap.urls')),
(r'^registration/', include('registration.urls')),
) )