Web stuff is once again working with the development server. This is mostly useful for the admin interface.
This commit is contained in:
parent
5249f27074
commit
714804e253
7 changed files with 12 additions and 10 deletions
|
|
@ -1,5 +1,5 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
urlpatterns = patterns('webapps.website.views',
|
||||
urlpatterns = patterns('game.web.apps.website.views',
|
||||
(r'^$', 'page_index'),
|
||||
)
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@ from django.shortcuts import render_to_response, get_object_or_404
|
|||
from django.template import RequestContext
|
||||
from django.contrib.auth.models import User
|
||||
|
||||
from apps.objects.models import Object
|
||||
from webapps.news.models import NewsEntry
|
||||
from src.objects.models import Object
|
||||
from game.web.apps.news.models import NewsEntry
|
||||
|
||||
"""
|
||||
This file contains the generic, assorted views that don't fall under one of
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
from apps.config.models import ConfigValue
|
||||
from src.config.models import ConfigValue
|
||||
|
||||
def general_context(request):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue