Event resturcturing
- new short_description field instead of title - autosave text - autocompletion on login
This commit is contained in:
Binary file not shown.
@@ -138,12 +138,13 @@ INSTALLED_APPS = (
|
||||
'crispy_forms', # better looking forms ( bootstrap )
|
||||
'sekizai', # for the addtoblock directive in templates
|
||||
'rest_framework', # for event management api
|
||||
|
||||
'south',
|
||||
|
||||
# Own Things
|
||||
'website', # Blechreiz Website in general
|
||||
'musicians', # User Management
|
||||
'eventplanner', # Event Management
|
||||
'messages', # Messages ( Forum )
|
||||
'simpleforum', # Messages ( Forum )
|
||||
'location_field', # custom location field used in Event Management
|
||||
)
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ from musicians.views import MusicianList, addressbook
|
||||
from musicians.views import user_edit
|
||||
|
||||
import website.views
|
||||
import messages.views
|
||||
import simpleforum.views
|
||||
|
||||
import eventplanner.urls
|
||||
import settings
|
||||
@@ -23,7 +23,8 @@ urlpatterns = patterns('',
|
||||
url(r'^musicians/(?P<username>[\w]+)$', user_edit ),
|
||||
url(r'^addressbook/$', addressbook ),
|
||||
url(r'^login/$', website.views.login_view),
|
||||
url(r'^login/usernames$', website.views.userlistForAutocompletion),
|
||||
url(r'^logout/$', website.views.logout_view),
|
||||
url(r'^messages/$', messages.views.message_view ),
|
||||
url(r'^messages/$', simpleforum.views.message_view ),
|
||||
url(r'^location_field/', include('location_field.urls')),
|
||||
) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
Reference in New Issue
Block a user