diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-11 21:49:34 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-11 21:49:34 -0500 |
commit | 199184b3b680bc4c8878bf11a60c0fbf72fb612f (patch) | |
tree | 92195ea8a1ba5e61fefca51896c2b8e01cdeaf43 /config | |
parent | 129a8545b520380a8567a4e7405634250f3d7da5 (diff) |
removed some things I wasn't using to clean up code base
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 906f7e6..989a876 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -17,7 +17,7 @@ import utils.views import products.views from locations.views import MapDataList -from income.views import MonthlyInvoiceView, DownloadMonthlyInvoiceView +#from income.views import MonthlyInvoiceView, DownloadMonthlyInvoiceView from posts.views import PostRSSFeedView admin.autodiscover() @@ -32,8 +32,8 @@ sitemaps = { urlpatterns = [ re_path(r'^admin/build/.*', builder.views.do_build), path(r'admin/data/', include('utils.urls')), - path(r'admin/income/invoice/monthlyview/<str:slug>/invoice/', DownloadMonthlyInvoiceView.as_view(), name="download-invoice"), - path(r'admin/income/invoice/monthlyview/<str:slug>/', MonthlyInvoiceView.as_view(), name="monthly-invoice"), + #path(r'admin/income/invoice/monthlyview/<str:slug>/invoice/', DownloadMonthlyInvoiceView.as_view(), name="download-invoice"), + #path(r'admin/income/invoice/monthlyview/<str:slug>/', MonthlyInvoiceView.as_view(), name="monthly-invoice"), path(r'admin/', admin.site.urls), path(r'luximages/insert/', utils.views.insert_image), path(r'luxproduct/insert/', products.views.insert_products), @@ -54,7 +54,7 @@ urlpatterns = [ re_path(r'^essay/$', RedirectView.as_view(url='/essays/')), path(r'essays/', include('posts.urls.essay_urls', namespace='essay-list')), path(r'book-notes/', include('books.urls')), - path(r'people/', include('people.urls')), + #path(r'people/', include('people.urls')), path(r'dialogues/', include('sightings.urls', namespace='sightings')), path(r'field-notes/', include('posts.urls.field_note_urls', namespace='fieldnote')), path(r'src/', include('posts.urls.src_urls', namespace='src')), |