diff options
-rw-r--r-- | app/lttr/templates/lttr/range_detail.html | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/app/lttr/templates/lttr/range_detail.html b/app/lttr/templates/lttr/range_detail.html index d62f0e4..ee6f198 100644 --- a/app/lttr/templates/lttr/range_detail.html +++ b/app/lttr/templates/lttr/range_detail.html @@ -78,7 +78,7 @@ alt="{{image.alt}} photographed by {% if image.photo_credit_source %}{{image.photo_credit_source}}{%else%}luxagraf{%endif%}"> </a> <figcaption> - {{image.exif_model}} {{image.exif_lens}} + <p>{{image.exif_make}} {{image.exif_model}} {%if image.exif_lens %}{{image.exif_lens}}{%endif%} {{image.exif_aperture}} at {{image.exif_iso}}</p> </figcaption> </figure>{%endwith%} <article class="h-entry hentry content" itemscope itemType="http://schema.org/BlogPosting"> @@ -178,11 +178,3 @@ {% block js %}{% comment %} <script async src="/media/js/hyphenate.min.js" type="text/javascript"></script>{% endcomment%}{% endblock%} - exif_aperture = models.CharField(max_length=50, blank=True, null=True) - exif_make = models.CharField(max_length=50, blank=True, null=True) - exif_model = models.CharField(max_length=50, blank=True, null=True) - exif_exposure = models.CharField(max_length=50, blank=True, null=True) - exif_iso = models.CharField(max_length=50, blank=True, null=True) - exif_focal_length = models.CharField(max_length=50, blank=True, null=True) - exif_lens = models.CharField(max_length=50, blank=True, null=True) - exif_date = models.DateTimeField(blank=True, null=True) |