第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

Django:租戶模板路徑問題

Django:租戶模板路徑問題

qq_花開花謝_0 2023-09-02 16:37:59
我有一個(gè)應(yīng)用程序,根據(jù)其類別,租戶可以定向到位于/dashboard/templates/dashboard或 的應(yīng)用程序(和模板) /dashboard2/templates/dashboard2。不知何故,對于dashboard2,Django 找不到該應(yīng)用程序,它嘗試在dashboard.這是儀表板2/views.py@method_decorator(login_required, name='dispatch')class SupplierPage2(LoginRequiredMixin,APIView):    def get(self, request, *args, **kwargs):        query = request.GET.get('search_ress', None)        print(query)        context = {}        #if query and request.method == 'GET':        Supplier = supplier2.objects.filter(supplier = query)        print(Supplier)               labels = Item2.objects.filter(fournisseur = query).values_list('reference', flat=True)[:10]        print(labels)        default_items = Item2.objects.filter(fournisseur = query).values_list('number_of_sales', flat=True)[:10]        print(default_items)        label1s = Item2.objects.filter(fournisseur = query).values_list('reference', flat=True)[:10]        print(label1s)        default_item1s = Item2.objects.filter(fournisseur = query).values_list('number_of_orders_placed', flat=True)[:10]        print(default_item1s)                    context.update({'Supplier' : Supplier, 'labels':labels, 'default_items':default_items,'label1s':label1s, 'default_item1s':default_item1s})        return render(request, 'Supplier2.html',context)和錯(cuò)誤:TemplateDoesNotExist at /Supplier2.htmlSupplier2.htmlRequest Method: GETRequest URL:    https://uname.website.net/Supplier2.htmlDjango Version: 3.0.5Exception Type: TemplateDoesNotExistException Value:    Supplier2.html
查看完整描述

1 回答

?
哆啦的時(shí)光機(jī)

TA貢獻(xiàn)1779條經(jīng)驗(yàn) 獲得超6個(gè)贊

修復(fù)設(shè)置如下:


TEMPLATES = [

    {

        'BACKEND': 'django.template.backends.django.DjangoTemplates',

        'DIRS': [os.path.join(BASE_DIR, "dashboard/templates/dashboard"), os.path.join(BASE_DIR,"dashboard2/templates/dashboard2")],

        'APP_DIRS': True,

        'OPTIONS': {

            'context_processors': [

                'django.template.context_processors.debug',

                'django.template.context_processors.request',

                'django.contrib.auth.context_processors.auth',

                'django.contrib.messages.context_processors.messages',

                'django.template.context_processors.i18n'

            ],

        },

    },

]


查看完整回答
反對 回復(fù) 2023-09-02
  • 1 回答
  • 0 關(guān)注
  • 142 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號