rophako/rophako/modules/emoticons/templates/emoticons/index.html

30 lines
623 B
HTML
Raw Normal View History

2014-04-06 22:45:43 +00:00
{% extends "layout.html" %}
{% block title %}Emoticons{% endblock %}
{% block content %}
<h1>Emoticon Theme: {{ theme_name }}</h1>
<table class="table" cellspacing="0" cellpadding="2">
2015-08-12 00:39:16 +00:00
<thead>
<tr>
<th>Emoticon</th>
<th>Trigger Text</th>
</tr>
</thead>
<tbody>
{% for img in smileys %}
<tr>
<td align="center" valign="middle">
<img src="/static/smileys/{{ theme }}/{{ img['img'] }}">
</td>
<td align="left" valign="middle">
{% for trigger in img['triggers'] %}
{{ trigger }}&nbsp;&nbsp;&nbsp;&nbsp;
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
2014-04-06 22:45:43 +00:00
</table>
{% endblock %}