Added proper support for font size and color
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / userProfileCommentList.tpl
1 {include file='__commentJavaScript' commentContainerID='userProfileCommentList'}
2
3 {if $commentCanAdd}
4 <ul id="userProfileCommentList" class="commentList containerList" data-can-add="true" data-object-id="{@$userID}" data-object-type-id="{@$commentObjectTypeID}" data-comments="{@$commentList->countObjects()}" data-last-comment-time="{@$lastCommentTime}">
5 {include file='commentList'}
6 </ul>
7 {else}
8 {hascontent}
9 <ul id="userProfileCommentList" class="commentList containerList" data-can-add="false" data-object-id="{@$userID}" data-object-type-id="{@$commentObjectTypeID}" data-comments="{@$commentList->countObjects()}" data-last-comment-time="{@$lastCommentTime}">
10 {content}
11 {include file='commentList'}
12 {/content}
13 </ul>
14 {hascontentelse}
15 <div class="section">
16 {lang}wcf.user.profile.content.wall.noEntries{/lang}
17 </div>
18 {/hascontent}
19 {/if}