Skip to content

Commit 5d46feb

Browse files
committed
Fixed an incorrect path to the default 'no photo available' image.
- Legacy-Id: 11348
1 parent 22cb20f commit 5d46feb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

ietf/templates/group/all_photos.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>{{ group_type | upper }} {{ role }} Photos</h1>
3333
{% if person_with_groups.grouper.photo_thumb %}
3434
<img width=100 src="{{person_with_groups.grouper.photo_thumb.url}}" alt="Photo of {{person_with_groups.grouper.name}}"/>
3535
{% else %}
36-
<img width=100 src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No picture available"/>
36+
<img width=100 src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No picture available"/>
3737
{% endif %}
3838
</div>
3939
<div class="photo-name">

ietf/templates/group/group_photos.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>{{ group }} ({{group.acronym}}) Photos</h1>
3333
{% if person_with_groups.grouper.photo_thumb %}
3434
<img width=100 src="{{person_with_groups.grouper.photo_thumb.url}}" alt="Photo of {{person_with_groups.grouper.name}}" />
3535
{% else %}
36-
<img width=100 src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No picture available"/>
36+
<img width=100 src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No picture available"/>
3737
{% endif %}
3838
</div>
3939
<div >

ietf/templates/iesg/photos.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1>{{ group_type | upper }} {{ role }} Photos</h1>
4242
{% if person_with_groups.grouper.photo_thumb %}
4343
<img width=100 src="{{person_with_groups.grouper.photo_thumb.url}}" alt="Photo of {{person_with_groups.grouper.name}}"/>
4444
{% else %}
45-
<img width=100 src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No photo available"/>
45+
<img width=100 src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No photo available"/>
4646
{% endif %}
4747
</div>
4848
<div class="photo-name">

ietf/templates/person/profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1>{{ person.name }}</h1>
2525
<img class="bio-photo" src="{{ person.photo.url }}" alt="Photo of {{ person }}" />
2626
</a>
2727
{% else %}
28-
<img class="bio-photo" src="{{ MEDIA_URL }}photos/nopictureavailable.jpg" alt="No photo available"/>
28+
<img class="bio-photo" src="{{ MEDIA_URL }}photo/nopictureavailable.jpg" alt="No photo available"/>
2929
{% endif %}
3030
{{ person.biography | apply_markup:"restructuredtext" }}
3131
</div>

0 commit comments

Comments
 (0)