显示图像"没有特色"使用Django模板语言中的特色图像

时间:2015-06-02 05:38:56

标签: django django-templates

我正在尝试使用django模板语言在特色图像下显示小缩略图但由于某种原因主图像显示精细但不小的图像。想法是显示一个特色图像并休息为"没有特色"图像。

我的单页代码显示"特色图片" " Not Featured"图片如下。

 {% extends 'base.html' %}
 {% block content %}
 <h1>{{ product.title }}</h1>
 {% for img in images %}

 {% if img.featured  %}
 <h1>Featured</h1>
 <img class='img-responsive' src="{{ MEDIA_URL }}{{ img.image }}"/>
 {% else %}
 <div class="col-xs-6 col-md-3">
 <a href="#" class="thumbnail">
 <img class='img-responsive' src="{{ MEDIA_URL }}{{ img.image }}"/>
 </a>
 </div>

 {% endif %}
 {% endfor %}
 {% endblock %}

请告知。

我的models.py是....

from django.core.urlresolvers import reverse
from django.db import models

class Product(models.Model):
    title = models.CharField(max_length=120)
    description = models.TextField(null=True, blank=True)
    price = models.DecimalField(decimal_places=2, max_digits=100, default=29.99)
    sale_price = models.DecimalField(decimal_places=2, max_digits=100, null=True, blank=True)
    slug = models.SlugField(unique=True)
    timestamp = models.DateTimeField(auto_now_add=True, auto_now=False)
    updated = models.DateTimeField(auto_now_add=False, auto_now=True)
    active = models.BooleanField(default=True)

   def __unicode__(self):
         return str(self.title)

   class Meta:
        unique_together = ('title', 'slug')

   def get_price(self):
        return self.price

   def get_absolute_url(self):
        return reverse('single_product', kwargs={'slug': self.slug})

class ProductImage(models.Model):
    product = models.ForeignKey(Product)
    image = models.ImageField(upload_to='products/images/')
    featured = models.BooleanField(default=False)
    thumbnail = models.BooleanField(default=False)
    active = models.BooleanField(default=True)
    updated = models.DateTimeField(auto_now_add=False, auto_now=True)

 def __unicode__(self):
     return self.product.title

2 个答案:

答案 0 :(得分:0)

所有图片都设置为精选,这引起了问题。感谢您的帮助@ f43d65。另请参阅Github的项目:https://github.com/codingforentrepreneurs/ecommerce/blob/master/ecommerce/templates/products/single.html

答案 1 :(得分:-1)

尝试替换

{{ MEDIA_URL }}{{ img.image }}

{{ img.image.url }}