source: trunk/forum/styles/prosilver/template/ucp_main_bookmarks.html

Last change on this file was 702, checked in by george, 15 years ago
  • Upraveno: Aktualizace fóra.
File size: 3.3 KB
Line 
1<!-- INCLUDE ucp_header.html -->
2
3<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
4
5<h2>{L_TITLE}</h2>
6
7<div class="panel">
8 <div class="inner"><span class="corners-top"><span></span></span>
9
10 <p>{L_BOOKMARKS_EXPLAIN}</p>
11
12<!-- IF S_NO_DISPLAY_BOOKMARKS -->
13 <p class="error">{L_BOOKMARKS_DISABLED}</p>
14<!-- ELSE -->
15
16<!-- IF .topicrow -->
17 <ul class="topiclist">
18 <li class="header">
19 <dl class="icon">
20 <dt>{L_BOOKMARKS}</dt>
21 <dd class="lastpost"><span>{L_LAST_POST}</span></dd>
22 </dl>
23 </li>
24 </ul>
25 <ul class="topiclist cplist">
26
27 <!-- BEGIN topicrow -->
28 <li class="row<!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ELSEIF topicrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
29 <!-- IF topicrow.S_DELETED_TOPIC -->
30 <dl><dt><strong>{L_DELETED_TOPIC}</strong></dt>
31 <dd class="mark"><input type="checkbox" name="t[{topicrow.TOPIC_ID}]" id="t{topicrow.TOPIC_ID}" /></dd>
32 </dl>
33 <!-- ELSE -->
34 <dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
35 <dt<!-- IF topicrow.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}">
36 <!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
37 <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
38 <!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
39 <!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF -->
40 <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} &raquo; {topicrow.FIRST_POST_TIME}
41 </dt>
42 <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
43 <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{topicrow.LAST_POST_TIME}</span>
44 </dd>
45 <dd class="mark"><input type="checkbox" name="t[{topicrow.TOPIC_ID}]" id="t{topicrow.TOPIC_ID}" /></dd>
46 </dl>
47 <!-- ENDIF -->
48 </li>
49 <!-- END topicrow -->
50 </ul>
51 <ul class="linklist">
52 <li class="rightside pagination">
53 <!-- IF TOTAL_TOPICS --> {TOTAL_TOPICS} <!-- ENDIF -->
54 <!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
55 </li>
56 </ul>
57<!-- ELSE -->
58 <p><strong>{L_NO_BOOKMARKS}</strong></p>
59<!-- ENDIF -->
60
61<!-- ENDIF -->
62
63 <span class="corners-bottom"><span></span></span></div>
64</div>
65
66<!-- IF .topicrow and not S_NO_DISPLAY_BOOKMARKS -->
67 <fieldset class="display-actions">
68 <input type="submit" name="unbookmark" value="{L_REMOVE_BOOKMARK_MARKED}" class="button2" />
69 <div><a href="#" onclick="marklist('ucp', '', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('ucp', '', false); return false;">{L_UNMARK_ALL}</a></div>
70 {S_FORM_TOKEN}
71 </fieldset>
72<!-- ENDIF -->
73</form>
74
75<!-- INCLUDE ucp_footer.html -->
Note: See TracBrowser for help on using the repository browser.