{% extends "base.html" %} {% block title %}Editing File{% endblock %} {% block content %}
{% if flash.info is defined %}
{{ flash.info.0|raw }}
{% endif %}
{% if (extension == "yaml") or (extension == "yml") %}
You are currently editing a YAML file. These files do not accept tabs, they must use spaces. We've gone ahead and made it so that hitting tab will insert spaces.
{% endif %}
{% if permission.has('files.save') %}
{{ xsrf|raw }}
{% endif %}
{% endblock %}