blob: b9aa7e9de7a62658d95696e38a9e3e4773d366fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{* $Header: /cvsroot/bitweaver/_bit_users/modules/mod_user_pages.tpl,v 1.4 2005/10/12 15:14:09 spiderr Exp $ *}
{strip}
{if $modLastPages}
{bitmodule title="$moduleTitle" name="last_changes"}
<ol>
{section name=ix loop=$modLastPages}
<li>
{if !$userContentType}
<strong>{tr}{$modLastPages[ix].content_description}{/tr}: </strong>
{/if}
{$modLastPages[ix].display_link}
{if $userShowDate}
<br/><span class="date">{$modLastPages[ix].last_modified|bit_long_date}</span>
{/if}
</li>
{sectionelse}
<li></li>
{/section}
</ol>
<a href="{$smarty.const.LIBERTY_PKG_URL}list_content.php?user_id={$gQueryUserId}&sort_mode=last_modified_desc{if $contentType}&content_type_guid={$contentType}{/if}">{tr}View more{/tr}…</a>
{/bitmodule}
{/if}
{/strip}
|