{% extends "layout.html" %} {% from 'modalaceedit.html' import modal_ace_edit_head %} {% from 'modalaceedit.html' import modal_ace_edit_body %} {% from 'modalaceedit.html' import modal_ace_edit_button %} {% from 'modalaceedit.html' import modal_ace_edit_jsfooter %} {% set yamleditors={ "options":{ "textidstring":"yamloptions", "varstring":"optionsstring", "modalidstring":"modaloptionsid", "title":"Set Colors for textures", "editorvar":"editoroptions", "buttontext":"Open options", "buttonidstring":"yamloptionsbuttonid", "contentid":"optionstext" },"exportrul":{ "textidstring":"yamlexport", "varstring":"exportstring", "modalidstring":"modalexportid", "title":"The exported Rul-File", "editorvar":"editorexport", "buttontext":"Open Export", "buttonidstring":"yamlexportbuttonid", "contentid":"exporttext" },"importrul":{ "textidstring":"yamlimport", "varstring":"importstring", "modalidstring":"modalimportid", "title":"The imported Rul-File", "editorvar":"editorimport", "buttontext":"Open Import", "buttonidstring":"yamlimportbuttonid", "contentid":"importtext" } } %} {% block title %}World Editor{% endblock %} {% block head %} {{ modal_ace_edit_head(yamleditors) }} {% endblock %} {% block content %} {% for acekey in yamleditors %} {{ modal_ace_edit_body(yamleditors[acekey]) }} {% endfor %}