我使用django-photologue并对其进行了扩展:
# gallery.models.py
from photologue.models import Photo
from profiles.models import UserProfile
class PhotoExtended(Photo):
user = models.ForeignKey(UserProfile, verbose_name=_('user'), on_delete=models.CASCADE)
# gallery.admin.py
from photologue.admin imp
我刚刚安装了photologue,并试图上传带有图片的zip文件。Django (1.4)显示以下错误:
TypeError at /admin/photologue/galleryupload/add/
coercing to Unicode: need string or buffer, tuple found
我需要做什么?
基于django-photologue,我想让用户有自己的画廊,并希望在管理员支付画廊的所有者。
Inlines在管理页面底部提供了额外的字段块。我只需要一个字段user,我想要显示在管理页面的主要块,即在Gallery模型的其他字段)。
# models
from photologue.models import Gallery
from profiles.models import UserProfile
class GalleryExtended(models.Model):
gallery = models.OneToOneField(Gallery)
user =
当通过Apache在Ubuntu上使用virtualenv部署我的项目时,在/var/log/apache2/error.log上出现以下错误:
ImportError: Photologue was unable to import Python Imaging Library. Please confirm it's installed and available on your current Python path.
设置:
Django==1.6.6
django-photologue==2.3
Pillow==2.5.1
但是,我已经能够在Ubuntu (用于开发)中使用相
我想为用户创建基于Photologue应用程序的图库。为了将用户的配置文件连接到photologue的模型,我想使用OneToOne。我也想..。让我们说“覆盖”照片的get_absolute_url,它由模板使用。
# models
from photologue.models import Gallery
from profiles.models import UserProfile
class GalleryExtended(models.Model):
gallery = models.OneToOneField(Gallery)
user = models.Fore
我正在使用django 1.9中的eav-django(实体-属性-值)。每当我执行命令./manage.py runserver时,我都会收到以下错误:
Unhandled exception in thread started by <function wrapper at 0x10385b500>
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/Django-1.9-py2.7.egg/django/utils/autoreload.py", line 2
为什么每次我在Visual中创建一个新项目时,它使用的是Django的1.9.1版本而不是2.0.3版本?我必须创建这个项目,然后将Django的版本升级到2.0.3,因为它会导致中间件出现其他版本Django的问题。
在我的settings.py:
"""
Django settings for pruebadelaprueba project.
Generated by 'django-admin startproject' using Django 1.9.1.
For more information on this file, see
ht
试图从django的1.7.4升级到1.8;但是,当我运行服务器时,我现在得到
There is no South database module 'south.db.mysql' for your database. Please either choose a supported database, check for SOUTH_DATABASE_ADAPTER[S] settings, or remove South from INSTALLED_APPS.
错误消息,它不起作用。我的INSTALLED_APPS里没有“南方”。别忘了在这个项目上用过南方。我所有的模型实