This commit is contained in:
cuom1999 2022-10-07 12:32:39 -05:00
parent 36abf602e6
commit 7cac4157c6
8 changed files with 30 additions and 62 deletions

View file

@ -405,10 +405,6 @@ DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
'USER': 'dmoj',
'PASSWORD': 'YES',
'HOST': 'localhost',
'PORT': '',
},
}

View file

@ -665,11 +665,6 @@ urlpatterns = [
organization.EditOrganizationBlog.as_view(),
name="edit_organization_blog",
),
# url(
# r"^/blog/deleting$",
# organization.PendingBlogs.as_view(),
# name="organization_pending_blogs",
# ),
url(
r"^/blog/pending$",
organization.PendingBlogs.as_view(),