diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2004-06-06 21:44:49 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-06-06 21:44:49 +0000 |
commit | c2834abfae4ac9bc02cb245d1bdb5bf78802ec26 (patch) | |
tree | 6691f2409cd2af03de0ac49b1db42d47cce01704 /phpBB/styles/subSilver/template/ucp_main_bookmarks.html | |
parent | b3d98c8ba1b6f21b4a7c412b94ce5cae80cb4a40 (diff) | |
download | forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar.gz forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar.bz2 forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar.xz forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.zip |
- added folder_moved image
- new feature: bookmark topics
- fixed post details link
- added confirmation screen to cookie deletion
git-svn-id: file:///svn/phpbb/trunk@4912 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subSilver/template/ucp_main_bookmarks.html')
-rw-r--r-- | phpBB/styles/subSilver/template/ucp_main_bookmarks.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/phpBB/styles/subSilver/template/ucp_main_bookmarks.html b/phpBB/styles/subSilver/template/ucp_main_bookmarks.html new file mode 100644 index 0000000000..bbf40c678b --- /dev/null +++ b/phpBB/styles/subSilver/template/ucp_main_bookmarks.html @@ -0,0 +1,49 @@ +<!-- INCLUDE ucp_header.html --> + +<!-- $Id$ --> + +<table class="tablebg" width="100%" cellspacing="1"> + <tr> + <th colspan="5">{L_UCP}</th> + </tr> + <tr> + <td class="row1" colspan="5" align="center"><span class="genmed">{L_UCP_WELCOME}</span></td> + </tr> + <tr> + <th colspan="5">{L_BOOKMARKS}</th> + </tr> + + <!-- IF S_NO_DISPLAY_BOOKMARKS --> + <tr class="row1"> + <td colspan="5" align="center"><b class="genmed">{L_BOOKMARKS_DISABLED}</b></td> + </tr> + <!-- ELSE --> + + <!-- BEGIN topicrow --> + + <!-- IF topicrow.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF --> + <td style="padding: 4px;" width="20" align="center" valign="middle">{topicrow.TOPIC_FOLDER_IMG}</td> + <!-- IF topicrow.S_DELETED_TOPIC --> + <td class="postdetails" style="padding: 4px" width="100%" colspan="2">{L_DELETED_TOPIC}</td> + <!-- ELSE --> + <td style="padding: 4px;" width="100%"><p class="topictitle">{topicrow.ATTACH_ICON_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></p><br /><span class="gensmall">{L_FORUM}: <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a></span></td> + <td class="postdetails" style="padding: 4px;" align="left" valign="top" nowrap="nowrap">{L_POSTED}:<br />{topicrow.POSTED_AT}</td> + <!-- ENDIF --> + <td class="postdetails" style="padding: 4px;" align="center" valign="middle" nowrap="nowrap"><!-- IF topicrow.U_MOVE_UP --><a href="{topicrow.U_MOVE_UP}">{L_MOVE_UP}</a><!-- ENDIF --><!-- IF topicrow.U_MOVE_UP and topicrow.U_MOVE_DOWN --> | <!-- ENDIF --><!-- IF topicrow.U_MOVE_DOWN --><a href="{topicrow.U_MOVE_DOWN}">{L_MOVE_DOWN}</a><!-- ENDIF --></td> + <td style="padding: 4px;"> <input type="checkbox" name="t[{topicrow.TOPIC_ID}]" /> </td> + </tr> + <!-- BEGINELSE --> + <tr class="row1"> + <td colspan="5" align="center"><b class="genmed">{L_NO_BOOKMARKS}</b></td> + </tr> + <!-- END topicrow --> + + <tr> + <td class="cat" colspan="5" align="right"><input class="btnlite" type="submit" name="unbookmark" value="{L_REMOVE_BOOKMARK_MARKED}" /> </td> + </tr> + <!-- ENDIF --> +</table> + +<!-- IF not S_NO_DISPLAY_BOOKMARKS --><div class="gensmall" style="float: right; padding-top: 2px;"><b><a href="javascript:marklist('ucp', true);">{L_MARK_ALL}</a> :: <a href="javascript:marklist('ucp', false);">{L_UNMARK_ALL}</a></b></div><!-- ENDIF --> + +<!-- INCLUDE ucp_footer.html -->
\ No newline at end of file |