__section__
default
__description__
useredit = user whose tags are being displayed
user_submenu = html text of user submenu, if any
tags_grouped = grouped user tags: a hashref, each duple having a key of a tagname and a value of an arrayref of hashrefs of the tags applied with that tagname

This template and its API will likely change.

__title__

__page__
users
__lang__
en_US
__name__
userbookmarks
__template__
[% thisnickname = useredit.nickname | strip_literal;
   url_nick = useredit.nickname | strip_paramattr;
   uid = useredit.uid;
   title = "Bookmarks by <a href=\"$gSkin.rootdir/~$url_nick/\">$thisnickname ($uid)</a>";
   PROCESS user_titlebar tab_selected='bookmarks' %]
<ul class="menu"><li><a href="[% gSkin.rootdir %]/bookmark.pl/?op=showbookmarks&recent=1">Recent</a></li>
<li><a href="[% gSkin.rootdir %]/bookmark.pl/?op=showbookmarks&popular=1">Popular</a></li></ul>

[% IF tags_grouped.keys.size %]
<div><table border="0" cellpadding="0" cellspacing="0" width="100%" class="tagslist">
[% FOREACH tagname = tags_grouped.keys.sort;
	FOREACH tag = tags_grouped.$tagname %]
		<tr>[% IF loop.first %]<td class="tagname" valign="top">[% tagname | strip_html %]</td>[% ELSE %]<td>&nbsp;</td>[% END %]
		<td>&nbsp;</td>
			<td valign="top">
				[% IF tag.globj_type == "stories" %]
					[% PROCESS linkStory dynamic=1 sid=tag.story.sid text=tag.story.title title=tag.story.title %]
				[% ELSIF tag.globj_type == "urls" %]
					<a href="[% tag.url.url %]">[% tag.url.bookmark.title || tag.url.validtitle || tag.url.initialtitle | strip_html %]</a>
				[% END %]
			</td>
		</tr>
	[% END;
END %]
</table></div>
[% ELSE %]
	<div>No bookmarks have been assigned.</div>
[% END %]
<p>
Want to know more about bookmarks? See the <a href="[% gSkin.rootdir %]/faq/tags.shtml#tags300">Bookmarking FAQ</a>
</p>
__seclev__
10000
__version__
$Id$
