在跟随了stackoverflow上的各种示例之后,我的新字段没有显示在django oscar仪表板上,这是我的模型和仪表板前叉。
目录
models.py
from django.db import models
from oscar.apps.catalogue.abstract_models import AbstractProduct
class Product(AbstractProduct):
file = models.FileField(upload_to='files/%Y/%m/%d')
from oscar.apps.catalogue.models import *
dashboard / catalogue / forms.py
from oscar.apps.dashboard.catalogue import forms as base_forms
class ProductForm(base_forms.ProductForm):
class Meta(base_forms.ProductForm.Meta):
fields = ('file',)
我想知道我为那些在需要帮助之前遇到此问题的人做错了什么。谢谢。