You are here

tft-folder-explorer.html.twig in Taxonomy File Tree 8

Same filename and directory in other branches
  1. 3.x templates/tft-folder-explorer.html.twig
<div id="folder-explorer-container">
    {% if folders %}
        {{ folders }}
    {% else %}
        <div class="messages notice">
            {% trans %}
                You must first <a href="{{ link|raw }}">create some taxonomy terms</a> before you can see any folders.
            {% endtrans %}
        </div>
    {% endif %}
</div>

File

templates/tft-folder-explorer.html.twig
View source
  1. <div id="folder-explorer-container">
  2. {% if folders %}
  3. {{ folders }}
  4. {% else %}
  5. <div class="messages notice">
  6. {% trans %}
  7. You must first <a href="{{ link|raw }}">create some taxonomy terms</a> before you can see any folders.
  8. {% endtrans %}
  9. </div>
  10. {% endif %}
  11. </div>