Created
July 23, 2011 23:07
-
-
Save ejucovy/1101983 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/urls.py b/urls.py | |
index aedc8e4..8a668dc 100644 | |
--- a/urls.py | |
+++ b/urls.py | |
@@ -19,11 +19,11 @@ from commitments import admin as commitments_admin | |
from django.contrib import admin | |
from basic.blog.models import Category, BlogRoll | |
from tagging.models import TaggedItem | |
-admin.site.unregister(Category) | |
-admin.site.unregister(BlogRoll) | |
-admin.site.unregister(TaggedItem) | |
+#admin.site.unregister(Category) | |
+#admin.site.unregister(BlogRoll) | |
+#admin.site.unregister(TaggedItem) | |
-admin.site.disable_action('delete_selected') | |
+#admin.site.disable_action('delete_selected') | |
# Sitemaps | |
from basic.blog.sitemap import BlogSitemap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.sqlite3', | |
'NAME': 'localpower', | |
'USER': '', | |
'PASSWORD': '', | |
'HOST': '', | |
'PORT': '', | |
}, | |
} | |
DEBUG = True | |
FACEBOOK_APPID = '' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment