Fixed an incorrect path to the default 'no photo available' image.

- Legacy-Id: 11348
This commit is contained in:
Henrik Levkowetz 2016-06-13 15:05:48 +00:00
parent 22cb20f41a
commit 5d46febe03
4 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@
{% if person_with_groups.grouper.photo_thumb %}
<img width=100 src="{{person_with_groups.grouper.photo_thumb.url}}" alt="Photo of {{person_with_groups.grouper.name}}"/>
{% else %}
<img width=100 src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No picture available"/>
<img width=100 src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No picture available"/>
{% endif %}
</div>
<div class="photo-name">

View file

@ -33,7 +33,7 @@
{% if person_with_groups.grouper.photo_thumb %}
<img width=100 src="{{person_with_groups.grouper.photo_thumb.url}}" alt="Photo of {{person_with_groups.grouper.name}}" />
{% else %}
<img width=100 src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No picture available"/>
<img width=100 src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No picture available"/>
{% endif %}
</div>
<div >

View file

@ -42,7 +42,7 @@
{% if person_with_groups.grouper.photo_thumb %}
<img width=100 src="{{person_with_groups.grouper.photo_thumb.url}}" alt="Photo of {{person_with_groups.grouper.name}}"/>
{% else %}
<img width=100 src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No photo available"/>
<img width=100 src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No photo available"/>
{% endif %}
</div>
<div class="photo-name">

View file

@ -25,7 +25,7 @@
<img class="bio-photo" src="{{ person.photo.url }}" alt="Photo of {{ person }}" />
</a>
{% else %}
<img class="bio-photo" src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No photo available"/>
<img class="bio-photo" src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No photo available"/>
{% endif %}
{{ person.biography | apply_markup:"restructuredtext" }}
</div>