mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-04-05 19:15:14 +08:00
32 lines
1.6 KiB
HTML
32 lines
1.6 KiB
HTML
<!--{if $filter=='new'}-->
|
|
<div class="popbox-header text-center">
|
|
<h3>{lang app_notice}</h3>
|
|
</div>
|
|
<div class="popbox-body notification-list" style="min-width:300px;max-height:400px;overflow:auto;padding: 0 5px 0;margin: 0;">
|
|
<!--{if $list}-->
|
|
<!--{loop $list $value}-->
|
|
<div class="notification-list-item clearfix">
|
|
<!--{if $value['avatarstatus']}-->
|
|
<div class="member member-no-menu">
|
|
<a class="member-avatar" style="position: absolute;left: 1px;" href="user.php?uid=$value[authorid]" title="$value[author]" hidefocus="true">{eval echo avatar_block($value[authorid]);}</a>
|
|
</div>
|
|
<!--{else}-->
|
|
<a class="member-avatar" style="position: absolute;left: 1px;" href="user.php?uid=$value[authorid]" title="$value[author]" hidefocus="true">{eval echo avatar_block($value[authorid]);}</a>
|
|
<!--{/if}-->
|
|
<div class="details">
|
|
<p class="note u-bottom" >$value[note]</p>
|
|
<p class="dateline u-bottom">$value[dateline]</p>
|
|
</div>
|
|
</div>
|
|
<!--{/loop}-->
|
|
<!--{else}-->
|
|
<p class="text-warning u-bottom" style="line-height:35px;">{lang noapp_notice}</p>
|
|
<!--{/if}-->
|
|
</div>
|
|
<div class="popbox-footer" style="padding:10px 5px;margin:0 5px">
|
|
<a href="{DZZSCRIPT}?mod=system&op=notification" class="notification-all">{lang lookallapp_notice}</a>
|
|
</div>
|
|
<script type="text/javascript" reload="1">
|
|
try{_notice.showTips(0);}catch(e){}
|
|
</script>
|
|
<!--{/if}--> |