Make image paths relative

This commit is contained in:
Adrian Moisey 2014-09-07 10:24:14 +02:00 committed by evilhero
parent d4318ab732
commit d3245f7023
1 changed files with 2 additions and 2 deletions

View File

@ -42,9 +42,9 @@
<td id="status">${comic['recentstatus']}</td>
<td id="active" align="center">
%if comic['Status'] == "Active":
<img src="/interfaces/default/images/checkmark.png" alt="Y" width="16" height="16" />
<img src="interfaces/default/images/checkmark.png" alt="Y" width="16" height="16" />
%else:
<img src="/interfaces/default/images/cross.png" alt="N" width="16" height="16" />
<img src="interfaces/default/images/cross.png" alt="N" width="16" height="16" />
%endif
</td>
</tr>