core -> liberbudget_core
This commit is contained in:
parent
3d69f68f1a
commit
0f4cc6f1c5
@ -2,6 +2,6 @@ from django.conf.urls import patterns, include, url
|
||||
from django.contrib import admin
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'', include('core.urls')),
|
||||
url(r'', include('librebudget_core.urls')),
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{% extends 'core/layout.html' %}
|
||||
{% extends 'librebudget_core/layout.html' %}
|
||||
{% load staticfiles %}
|
||||
|
||||
{% block css %}
|
||||
@ -1,7 +1,7 @@
|
||||
from django.conf.urls import patterns, include, url
|
||||
from django.contrib import admin
|
||||
|
||||
from core import views
|
||||
from librebudget_core import views
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'^$', views.home, name='home'),
|
||||
|
||||
@ -2,4 +2,4 @@ from django.shortcuts import render
|
||||
|
||||
|
||||
def home(request):
|
||||
return render(request, 'core/index.html')
|
||||
return render(request, 'librebudget_core/index.html')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user