django FileBrowseField显示为CharField

django FileBrowseField显示为CharField,django,django-filebrowser,Django,Django Filebrowser,我已经下载了django filebrowser 3.4.3(没有grapelli),所有安装步骤都正常。 但是,当我在模型中添加FileBrowseField时,它显示为CharField。我不想那样! 它应该显示一个FileBrowseField models.py from django.db import models from filebrowser.fields import FileBrowseField class Logo(models.Model): logo = F

我已经下载了django filebrowser 3.4.3(没有grapelli),所有安装步骤都正常。 但是,当我在模型中添加FileBrowseField时,它显示为CharField。我不想那样! 它应该显示一个FileBrowseField

models.py

from django.db import models
from filebrowser.fields import FileBrowseField
class Logo(models.Model):
    logo = FileBrowseField(max_length=250)
管理员

from django.contrib import admin
from django.db import models
from models import Logo

class LogoAdmin(admin.ModelAdmin):
    list_display = ['logo']
admin.site.register(Logo, LogoAdmin)

请帮忙

看来我在
/static/filebrowser/img
文件夹中丢失了一个图像。这是您单击以打开浏览器的图像。我已经添加了图像并从正确的模板链接到它:
/templates/filebrowser/custom_field.html

当您单击charfield时会发生什么?只是charfield的正常行为:我可以在此处键入textUnder requirements:它说需要PIL和Grapelli。安装了吗?安装了PIL,但我不需要Grapelli,我用过这个:怪异。。。在
/templates/filebrowser/custom_field.html
中,第二行有一个超链接,没有任何与之关联的图像或文本:
当我在那里放置一些文本时,我可以单击该链接并上载