1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-03 19:47:25 +01:00
vichan/templates/8chan/boards-table.html
8n-tech 97ae37651f Quickfix of CSS issues for boardlist.
#467 - Added missing HTML for noJS users.
#467 - Added additional CSS for FireFox fixes.

Signed-off-by: 8n-tech <8n-tech@users.noreply.github.com>
2015-04-21 11:33:04 +10:00

14 lines
900 B
HTML

{% for board in boards %}
<tr>
<!-- <td class="board-meta">{{ board.locale }}</td> -->
<td class="board-uri"><p class="board-cell">
<a href='/{{board['uri']}}/'>/{{board['uri']}}/</a>
{% if board['sfw'] %}<i class="fa fa-briefcase board-sfw" title="SFW"></i>{% endif %}
</p></td>
<td class="board-title"><p class="board-cell" title="Created {{board['time']}}">{{board['title']|e}}</p></td>
<td class="board-pph"><p class="board-cell board-pph-desc" title="{{board['pph']}} made in the last hour, {{board['pph_average']}} on average">{{board['pph']}}</p></td>
<td class="board-unique"><p class="board-cell">{{board['active']}}</p></td>
<td class="board-tags"><p class="board-cell">{% for tag in board.tags %}<a class="tag-link" href="{{tag_query}}{{tag|e}}">{{tag|e}}</a>{% endfor %}</p></td>
<td class="board-max"><p class="board-cell">{{board['posts_total']}}</p></td>
</tr>
{% endfor %}