Django: обратный для ‘create_order’ не найден

#python #django

#python #django

Вопрос:

Мне нужна дополнительная пара глаз для этой проблемы, я часами не могу найти, какую синтаксическую ошибку я допустил на этот раз, или если правила синтаксиса Django изменились после какого-то обновления, о котором я не знаю, по какой-то причине он просто не может найти create_order .

dashboard.html

 <a class="btn btn-primary  btn-sm btn-block" href="{% url 'create_order' %}">Create Order</a>
            
  

urls.py файл

 from django.urls import path
from . import views


urlpatterns = [
    
    path('', views.home, name="home"),
    path('customer/<str:pk>/', views.customer, name="customer"),
    path('products/', views.products, name="products"),
    path('create_order/', views.createOrder, name="create_order"),
]
  

views.py файл

 from django.shortcuts import render
from django.http import HttpResponse
from.models import *
def home(request):
    customers=Customer.objects.all()
    orders=Order.objects.all()
    total_customers=customers.count()
    total_orders=orders.count()
    delivered=orders.filter(status="Delivered").count()
    pending=orders.filter(status="Pending").count()
    context={'orders':orders,'customers':customers,
    'pending':pending, 'delivered':delivered,'total_orders':total_orders}
    return render(request, 'accounts/dashboard.html',context)

def products(request):      
    products = Product.objects.all()
    
    return render(request, 'accounts/products.html',{'products' :products})

def customer(request, pk):
    customer=Customer.objects.get(id=pk)
    orders=customer.order_set.all()
    order_count=orders.count()
    context={'customer': customer, 'orders': orders,'order_count':order_count}
    return  render(request, 'accounts/customer.html', context)

def createOrder(request):
    context={}
    return render(request, 'accounts/order_form.html',context)
  

ошибка Django

 NoReverseMatch at /
Reverse for 'create_order' not found. 'create_order' is not a valid view function or pattern name.
Request Method: GET
Request URL:    http://127.0.0.1:8000/
Django Version: 3.1.1
Exception Type: NoReverseMatch
Exception Value:    
Reverse for 'create_order' not found. 'create_order' is not a valid view function or pattern name.
Exception Location: C:UsersJanekAppDataLocalProgramsPythonPython37libsite-packagesdjangourlsresolvers.py, line 685, in _reverse_with_prefix
Python Executable:  C:UsersJanekAppDataLocalProgramsPythonPython37python.exe
Python Version: 3.7.5
Python Path:    
['C:\Users\Janek\Desktop\crm1',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37\python37.zip',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37\DLLs',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37\lib',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37\lib\site-packages',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37\lib\site-packages\win32',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37\lib\site-packages\win32\lib',
 'C:\Users\Janek\AppData\Local\Programs\Python\Python37\lib\site-packages\Pythonwin']
Server time:    Fri, 25 Sep 2020 09:23:37  0000
  

** urls.py-crm1

 from django.contrib import admin
from django.urls import path, include



urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('accounts.urls')),
    
]
  

**

Комментарии:

1. из django.contrib импортируйте администратора из django.urls импортируйте путь, включите urlpatterns = [ path(‘admin /’, admin.site.urls), path(«, include (‘accounts.urls’)), ]

2. пожалуйста, отредактируйте это в своем вопросе, а не здесь, в комментариях

3. готово, приятель, в самом низу

4. как называется ваше приложение, у которого есть эти URL-адреса?

5. какие URL-адреса и какие представления? просмотры из приложения accounts и URL-адреса там тоже, но urls.py-crm1 взяты из crm1

Ответ №1:

ваш urls.py находится в accounts приложении, верно?

У вас тоже есть apps.py файл в accounts каталоге? Это выглядит примерно так:

 from django.apps import AppConfig
class MyappConfig(AppConfig):
    name = 'accounts' # <- this is the value you're looking for
  

возьмите name значение и добавьте его, как app_name указано выше urlpatterns , в вашем urls.py подобном:

 app_name = 'accounts' # the actual value of `name` from apps.py
urlpatterns = [
    path('', views.home, name="home"),
    path('customer/<str:pk>/', views.customer, name="customer"),
    path('products/', views.products, name="products"),
    path('create_order/', views.createOrder, name="create_order"),
]
  

затем используйте его с префиксом:

 {% url 'accounts:create_order' %}