1234567891011121314151617181920 |
- <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
- <td class="td_read {{ icon_class }} {{ tooltip }}" title="{{ icon_class|replace({'_': ' '})|ucfirstall }}"></td>
- <td class="td_latest">
- <span style="float: left;" class="last_topic">
- <strong>
- <a href="forums.php?action=viewthread&threadid={{ id }}" class="tooltip" data-title-plain="{{ title }}"{%
- if title != cut_title %} title="{{ title }}"{% endif %}>{{ cut_title }}</a>
- </strong>
- {{ page_links|raw }}
- </span>
- {% if is_read %}
- <span style="float: left;" class="{{ tooltip }} last_read" title="Jump to last read">
- <a href="forums.php?action=viewthread&threadid={{ id }}&page={{ last_read_page }}#post{{ last_read_post }}"></a>
- </span>
- {% endif %}
- <span style="float: right;" class="last_poster">by {{ last_post_user|raw }} {{ last_post_diff|raw }}</span>
- </td>
- <td class="td_replies number_column m_td_right">{{ replies|number_format }}</td>
- <td class="td_author">{{ author|raw }}</td>
- </tr>
|