XF 2.2 Show poll icon

Salamanca

Active member
Hi,

Is it possible to show if a thread contains a poll?

Code:
<xf:if is="$thread.isUnread()">
         <a class="latestposts_unread" href="{{ link('threads/unread', $thread) }}">{{ prefix('thread', $thread) }}{$thread.title}</a>
<xf:else />
        <a class="latestposts_read" href="{{ link('threads/post', $thread, {'post_id': $thread.last_post_id}) }}">{{ prefix('thread', $thread) }}{$thread.title}</a>
</xf:if>

Thanks
Alex
 
Top Bottom