Commit 8755a065dcf8303e9d381f9d2f2a2daf5a8debc3

Authored by bshuttle
1 parent 1df5ff62

need the actual template...


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5005 c91229c3-7414-0410-bfa2-8a42b809f60b
plugins/browseabledashlet/templates/browseabledashlet/dashlet.smarty 0 → 100644
  1 +<h2>{i18n}Orphaned Folders{/i18n}</h2>
  2 +
  3 +<p class="descriptiveText">{i18n}Since KnowledgeTree only shows you the folders and
  4 +documents you are allowed to see, there are some placed that you can view
  5 +but can't get to &mdash; for example, if they are in a folder you are not
  6 +allowed to see. These are called "orphaned folders" since you can't access their parents
  7 +and they are are listed below.{/i18n}</p>
  8 +
  9 +{if empty($folders)}
  10 +<div class="ktInfo"><p>You have no orphaned folders.</p></div>
  11 +{else}
  12 +<table class="kt_collection">
  13 +<thead>
  14 + <tr>
  15 + <th>Title</th>
  16 + </tr>
  17 +</thead>
  18 +<tbody>
  19 +{foreach from=$folders item=oFolder}
  20 + <tr class="browse_column {cycle values=odd,even}"><td><span
  21 + class="contenttype folder"><a
  22 + href="{ktLink base="browse.php" query="fFolderId=`$oFolder->getId()`"}">{$oFolder->getName()}</a> </span>
  23 + </td></tr>
  24 +{/foreach}
  25 +</tbody>
  26 +</table>
  27 +{/if}
... ...