Skip to content

Commit

Permalink
removing filepath and uri from exif data display
Browse files Browse the repository at this point in the history
  • Loading branch information
rallek committed Jan 13, 2018
1 parent f385387 commit 92e03d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

Changes in RKEventPhotosModule 1.0.2

* removing filepath and uri from exif data #14
* version number corrected #16
* delete button was missing #23

Changes in RKEventPhotosModule 1.0.1
* shrinking of images are now functional
* remark for memory in readme.md
4 changes: 3 additions & 1 deletion Resources/views/AlbumItem/display.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,12 @@
<div id="collapseListgroup1" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapseExifHeadline1" aria-expanded="false" style="">
<ul class="list-group">
{% for fieldName, fieldValue in albumItem.imageMeta %}
{%if fieldName in ['filepath', 'uri']%}
{% else %}
<li class="list-group-item"><strong>{{ fieldName|replace({ 'exif.': '' }) }}:</strong> {% if fieldValue is iterable %}{{ fieldValue|join(', ') }}{% else %}{{ fieldValue }}{% endif %}</li>
{%endif%}
{% endfor %}
</ul>
<div class="panel-footer">Footer</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 92e03d7

Please sign in to comment.