组合一个 django 应用程序(我的第一个 django/python 任何东西)。我的 application/urls.py 的另一个文件中有一些 url 模式。但是当我启动并尝试导航到任何东西时,我从“~/Development/PFM/finances/urls.py”中得到包含的 urlconf 模块“finances.urls”没有任何模式
我在另一篇文章中读到,这里
视图中的反向查找存在潜在问题。我只是使用通用的基于类的视图和一个自定义视图,所以我不确定从哪里开始。这是代码:
PFM/urls.py:
from django.conf.urls import patterns, include, url
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
url(r'^finances/', include('finances.urls')),
# Examples:
# url(r'^$', 'PFM.views.home', name='home'),
# url(r'^PFM/', include('PFM.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
)
PFM/财务/urls.py:
from django.conf.urls import patterns, url
from finances import views
urlpatterns = patterns
('',
url(r'^$', views.ListView.as_view(), name='index'),
url(r'^(P<pk>\d+/$)', views.TransactionList, name='detail'), # transaction list
url(r'^/account/(P<pk>\d+)/$', views.AccountList.as_view(), name='detail'), # account detail
url('/account/create/', views.account, name='create'), # account create
url(r'^/account/update/(P<pk>\d+)/$', views.AccountUpdate.as_view(), name='update'), # account update
url(r'^/account/delete/(P<pk>\d+)/$', views.AccountDelete.as_view(), name='delete'), # account delete
)
财务/models.py(如果需要)
#views for Account
class AccountList(DetailView):
model = Account
object_id = Account.pk
class AccountUpdate(UpdateView):
model = Account
object_id = Account.pk
class AccountDelete(DeleteView):
model = Account
object_id = Account.pk
post_delete_redirect = "finances/"
#create form/view for Account
def account(request):
if request.method == 'POST':
form = AccountForm(request.POST)
if form.is_valid():
#save the data?
Account.save()
return HttpResponseRedirect('/index.html')
else:
form = AccountForm()
return render(request, 'account_create.html', {
'form': form,
})
#views for Transactions
class TransactionList(ListView):
template_name = "finances/index.html"
def get_queryset(self):
return Transaction.objects.order_by('-due_date')
任何帮助表示赞赏。谢谢