forbidden_content.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div class="row not-found-message-row mb-4">
  2. <div class="col-lg-12">
  3. <h2 class="text-muted">
  4. <i class="icon-ban" aria-hidden="true"></i>
  5. Forbidden
  6. </h2>
  7. </div>
  8. </div>
  9. <div id="content-main" class="content-main page-list"
  10. data-path="{{ encodeURI(path) }}"
  11. data-current-user="{% if user %}{{ user._id.toString() }}{% endif %}"
  12. >
  13. <div class="row row-alerts d-edit-none">
  14. <div class="col-sm-12">
  15. <p class="alert alert-primary py-3 px-4">
  16. <i class="icon-fw icon-lock" aria-hidden="true"></i> Browsing of this page is restricted
  17. </p>
  18. </div>
  19. </div>
  20. <ul class="nav nav-tabs hidden-print" role="tablist">
  21. <li class="nav-item grw-nav-main-left-tab">
  22. <a class="nav-link active" role="tab" href="#revision-body" data-toggle="tab">
  23. <i class="icon-notebook"></i> List
  24. </a>
  25. </li>
  26. </ul>
  27. <div class="tab-content">
  28. {# list view #}
  29. <div class="pt-2 active tab-pane page-list-container" id="revision-body">
  30. {% if pages.length == 0 %}
  31. <div class="mt-2">
  32. There are no pages under <strong>{{ path | preventXss }}</strong>.
  33. </div>
  34. {% endif %}
  35. {% include '../widget/page_list.html' with { pages: pages, pager: pager, viewConfig: viewConfig } %}
  36. </div>
  37. </div>
  38. </div>