diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-09-12 11:08:20 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-09-12 11:08:20 +0100 |
commit | 1552107131d95beddcf042e3b1cd680f36b729ec (patch) | |
tree | 7572a332a41522f0ccaae3115ba1689f41c91569 | |
parent | 0de03c9643f5deba3ecf2abb1bb961a5faa8a298 (diff) |
[Zurich] Fix url for admin problem-row photos
-rw-r--r-- | templates/web/zurich/admin/problem_row.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/web/zurich/admin/problem_row.html b/templates/web/zurich/admin/problem_row.html index 162b6992a..71b64839a 100644 --- a/templates/web/zurich/admin/problem_row.html +++ b/templates/web/zurich/admin/problem_row.html @@ -33,10 +33,8 @@ [% END %] <td> - [% IF problem.photo; - photo = problem.get_photo_params - %] - <img class="img" height="60" width="90" src="[% photo.url_fp %]" alt=""> + [% IF problem.photo %] + <img class="img" height="60" width="90" src="[% c.cobrand.base_url %]/photo/[% problem.photo %].temp.jpeg" alt=""> [% END %] </td> |