permission_error.html 479 B

123456789101112
  1. {% extends '500.html' %}
  2. {% block message %}
  3. <p>
  4. A file permission error was detected while processing this request. Common causes include the following:
  5. </p>
  6. <p>
  7. <i class="mdi mdi-alert"></i> <strong>Insufficient write permission to the media root</strong> - The configured
  8. media root is <code>{{ settings.MEDIA_ROOT }}</code>. Ensure that the user NetBox runs as has access to write files
  9. to all locations within this path.
  10. </p>
  11. {% endblock message %}