dashboard-problems.html.twig 690 B

1234567891011
  1. {% if authorize(['admin.plugins', 'admin.super']) and grav['flex_objects'] is null %}
  2. <div id="dependency-missing" class="dashboard-item-flex">
  3. <div class="alert warning">
  4. <h1>Admin plugin dependency is missing</h1>
  5. <p>Admin now requires the Flex Objects plugin for managing <em>User Accounts</em> and <em>Flex Pages</em>. For more information, please <a href="https://learn.getgrav.org/17/admin-panel/faq#flex-objects">check the documentation</a>.</p>
  6. <p><a href="{{ admin_route('/plugins/flex-objects') }}" class="button"><i class="fa fa-download"></i> Install and enable Flex Objects plugin</a></p>
  7. </div>
  8. </div>
  9. {% endif %}