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:
parent
d4318ab732
commit
d3245f7023
1 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue