1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-24 08:42:37 +00:00

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

View file

@ -42,9 +42,9 @@
<td id="status">${comic['recentstatus']}</td> <td id="status">${comic['recentstatus']}</td>
<td id="active" align="center"> <td id="active" align="center">
%if comic['Status'] == "Active": %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: %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 %endif
</td> </td>
</tr> </tr>