not_creatable_content.html 1002 B

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="row not-found-message-row mb-4">
  2. <div class="col-md-12">
  3. <h2 class="text-muted">
  4. <i class="icon-ban" aria-hidden="true"></i>
  5. Couldn't create path
  6. </h2>
  7. </div>
  8. </div>
  9. <div id="content-main" class="content-main page-list"
  10. data-path="{{ path | preventXss }}"
  11. data-current-user="{% if user %}{{ user._id.toString() }}{% endif %}"
  12. >
  13. <ul class="nav nav-tabs hidden-print">
  14. <li class="grw-nav-main-left-tab active">
  15. <a href="#revision-body" data-toggle="tab">
  16. <i class="icon-notebook"></i> List
  17. </a>
  18. </li>
  19. </ul>
  20. <div class="tab-content">
  21. {# list view #}
  22. <div class="pt-2 active tab-pane page-list-container" id="revision-body">
  23. {% if pages.length == 0 %}
  24. <div class="mt-2">
  25. There are no pages under <strong>{{ path }}</strong>.
  26. </div>
  27. {% endif %}
  28. {% include '../widget/page_list.html' with { pages: pages, pager: pager, viewConfig: viewConfig } %}
  29. </div>
  30. </div>
  31. </div>