Fixed an incorrect path to the default 'no photo available' image.
- Legacy-Id: 11348
This commit is contained in:
parent
22cb20f41a
commit
5d46febe03
|
@ -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">
|
||||
|
|
|
@ -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 >
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue