From f1081cd0e9ef9108b4bf9e663d355905fd5a55c5 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 30 Jan 2021 14:41:17 -0500 Subject: lttr: still working on caption for Range images --- app/lttr/templates/lttr/range_detail.html | 10 +--------- 1 file changed, 1 insertion(+), 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%}">
- {{image.exif_model}} {{image.exif_lens}} +

{{image.exif_make}} {{image.exif_model}} {%if image.exif_lens %}{{image.exif_lens}}{%endif%} {{image.exif_aperture}} at {{image.exif_iso}}

{%endwith%}
@@ -178,11 +178,3 @@ {% block js %}{% comment %} {% 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) -- cgit v1.2.3