这是我在 django 中的第一个项目,我使用 photologue 作为画廊,这太棒了,我真的很喜欢。
但有一件事我不明白,我该如何使用它的 ImageModel?
我有一个博客应用程序,并且在管理界面中创建的每个新博客帖子我都想上传一个链接到该帖子的图像。
from django.db import models
from tagging.fields import TagField
from tinymce import models as tinymce_models
from photologue.models import ImageModel
#import datetime
# Create your models here.
class Blog(models.Model):
title = models.CharField(max_length=150)
content = tinymce_models.HTMLField()
pub_date = models.DateTimeField(auto_now_add=True)
edit_date = models.DateTimeField(auto_now=True)
tags = TagField()
summary = models.CharField(max_length=30)
thumbnail = ImageModel()
def __unicode__(self):
return self.title
上面的代码实际上似乎不起作用或做任何事情。
我一直在翻阅文档、谷歌等,并试图自己了解 photologue 的来源,但我似乎无法让它像我想要的那样工作。