[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/styles/prosilver/template/ -> ucp_main_subscribed.html (source)

   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  <div class="panel">
   7      <div class="inner">
   8  
   9      <p>{L_WATCHED_EXPLAIN}</p>
  10  
  11  <!-- IF .forumrow -->
  12      <ul class="topiclist missing-column">
  13          <li class="header">
  14              <dl class="row-item">
  15                  <dt><div class="list-inner">{L_WATCHED_FORUMS}</div></dt>
  16                  <dd class="lastpost"><span>{L_LAST_POST}</span></dd>
  17                  <dd class="mark">{L_MARK}</dd>
  18              </dl>
  19          </li>
  20      </ul>
  21      <ul class="topiclist cplist missing-column">
  22  
  23      <!-- BEGIN forumrow -->
  24          <li class="row<!-- IF forumrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
  25              <dl class="row-item {forumrow.FORUM_IMG_STYLE}">
  26                  <dt>
  27                      <!-- IF forumrow.S_UNREAD_FORUM --><a href="{forumrow.U_VIEWFORUM}" class="row-item-link"></a><!-- ENDIF -->
  28                      <div class="list-inner">
  29                          <a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a><br />
  30                          {forumrow.FORUM_DESC}
  31                          <!-- IF forumrow.LAST_POST_TIME -->
  32                          <div class="responsive-show" style="display: none;">
  33                              {L_LAST_POST} {L_POST_BY_AUTHOR} {forumrow.LAST_POST_AUTHOR_FULL} &laquo; <a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_TIME}</a>
  34                          </div>
  35                          <!-- ENDIF -->
  36                      </div>
  37                  </dt>
  38                  <dd class="lastpost">
  39                      <!-- IF forumrow.LAST_POST_TIME -->
  40                          <span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {forumrow.LAST_POST_AUTHOR_FULL}
  41                              <a href="{forumrow.U_LAST_POST}">
  42                                  <i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span>
  43                              </a>
  44                              <br />{forumrow.LAST_POST_TIME}</span>
  45                      <!-- ELSE -->
  46                          {L_NO_POSTS}<br />&nbsp;
  47                      <!-- ENDIF -->
  48                  </dd>
  49                  <dd class="mark"><input type="checkbox" name="f[{forumrow.FORUM_ID}]" id="f{forumrow.FORUM_ID}" /></dd>
  50              </dl>
  51          </li>
  52      <!-- END forumrow -->
  53      </ul>
  54  <!-- ELSEIF S_FORUM_NOTIFY -->
  55      <ul class="topiclist">
  56          <li class="header">
  57              <dl class="row-item">
  58                  <dt>{L_WATCHED_FORUMS}</dt>
  59              </dl>
  60          </li>
  61      </ul>
  62      <p><strong>{L_NO_WATCHED_FORUMS}</strong></p>
  63  <!-- ENDIF -->
  64      <br />
  65  
  66  <!-- IF .topicrow -->
  67      <ul class="topiclist missing-column">
  68          <li class="header">
  69              <dl class="row-item">
  70                  <dt><div class="list-inner">{L_WATCHED_TOPICS}</div></dt>
  71                  <dd class="lastpost"><span>{L_LAST_POST}</span></dd>
  72                  <dd class="mark">{L_MARK}</dd>
  73              </dl>
  74          </li>
  75      </ul>
  76      <ul class="topiclist cplist missing-column">
  77  
  78      <!-- BEGIN topicrow -->
  79          <li class="row<!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ELSEIF topicrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
  80              <dl class="row-item {topicrow.TOPIC_IMG_STYLE}">
  81                  <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}">
  82                      <!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}" class="row-item-link"></a><!-- ENDIF -->
  83                      <div class="list-inner">
  84                          <!-- IF topicrow.S_UNREAD_TOPIC -->
  85                              <a class="unread" href="{topicrow.U_NEWEST_POST}">
  86                                  <i class="icon fa-file fa-fw icon-red icon-md" aria-hidden="true"></i><span class="sr-only">{NEW_POST}</span>
  87                              </a>
  88                          <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
  89                          <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
  90                              <a href="{topicrow.U_MCP_QUEUE}" title="{L_TOPIC_UNAPPROVED}">
  91                                  <i class="icon fa-question fa-fw icon-blue" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_UNAPPROVED}</span>
  92                              </a>
  93                          <!-- ENDIF -->
  94                          <!-- IF topicrow.S_TOPIC_REPORTED -->
  95                              <a href="{topicrow.U_MCP_REPORT}" title="{L_TOPIC_REPORTED}">
  96                                  <i class="icon fa-exclamation fa-fw icon-red" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_REPORTED}</span>
  97                              </a>
  98                          <!-- ENDIF -->
  99                          <br />
 100                          <!-- IF .topicrow.pagination -->
 101                          <div class="pagination">
 102                              <ul>
 103                              <!-- BEGIN pagination -->
 104                                  <!-- IF topicrow.pagination.S_IS_PREV -->
 105                                  <!-- ELSEIF topicrow.pagination.S_IS_CURRENT --><li class="active"><span>{topicrow.pagination.PAGE_NUMBER}</span></li>
 106                                  <!-- ELSEIF topicrow.pagination.S_IS_ELLIPSIS --><li class="ellipsis"><span>{L_ELLIPSIS}</span></li>
 107                                  <!-- ELSEIF topicrow.pagination.S_IS_NEXT -->
 108                                  <!-- ELSE --><li><a href="{topicrow.pagination.PAGE_URL}">{topicrow.pagination.PAGE_NUMBER}</a></li>
 109                                  <!-- ENDIF -->
 110                              <!-- END pagination -->
 111                              </ul>
 112                          </div>
 113                          <!-- ENDIF -->
 114                          <div class="responsive-hide">
 115                              <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <!-- ENDIF -->
 116                              {L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} &raquo; {topicrow.FIRST_POST_TIME}
 117                          </div>
 118                          <div class="responsive-show" style="display: none;">
 119                              <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <!-- ENDIF -->
 120                              {L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL} &laquo; <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{topicrow.LAST_POST_TIME}</a>
 121                          </div>
 122                      </div>
 123                  </dt>
 124                  <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
 125                      <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">
 126                          <i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span>
 127                      </a>
 128                      <br />{topicrow.LAST_POST_TIME}</span>
 129                  </dd>
 130                  <dd class="mark"><input type="checkbox" name="t[{topicrow.TOPIC_ID}]" id="t{topicrow.TOPIC_ID}" /></dd>
 131              </dl>
 132          </li>
 133      <!-- END topicrow -->
 134      </ul>
 135  
 136      <div class="action-bar bar-bottom">
 137          <div class="pagination">
 138              {TOTAL_TOPICS}
 139              <!-- IF .pagination -->
 140                  <!-- INCLUDE pagination.html -->
 141              <!-- ELSE -->
 142                   &bull; {PAGE_NUMBER}
 143              <!-- ENDIF -->
 144          </div>
 145      </div>
 146  
 147  <!-- ELSEIF S_TOPIC_NOTIFY -->
 148      <ul class="topiclist">
 149          <li class="header">
 150              <dl class="row-item">
 151                  <dt>{L_WATCHED_TOPICS}</dt>
 152              </dl>
 153          </li>
 154      </ul>
 155      <p><strong>{L_NO_WATCHED_TOPICS}</strong></p>
 156  <!-- ENDIF -->
 157  
 158      </div>
 159  </div>
 160  
 161  <!-- IF .topicrow or .forumrow -->
 162      <fieldset class="display-actions">
 163          <input type="submit" name="unwatch" value="{L_UNWATCH_MARKED}" class="button2" />
 164          <div><a href="#" onclick="marklist('ucp', 't', true); marklist('ucp', 'f', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('ucp', 't', false); marklist('ucp', 'f', false); return false;">{L_UNMARK_ALL}</a></div>
 165          {S_FORM_TOKEN}
 166      </fieldset>
 167  <!-- ENDIF -->
 168  </form>
 169  
 170  <!-- INCLUDE ucp_footer.html -->


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1