Hi everyone I create a app with 3 fields (html, css and js) the apps have to embed this 3 fields in the template of my app like this. I use a placeholder to show this fields.
<style type="text/css">
{{instance.css_code|safe}}
</style>
{{instance.html_code|safe}}
<div id="containerChart" style="height: 400px; min-width: 310px"></div>
<script type="text/javascript">
{{instance.js_code| safe }}
</script>
What a best way to do that, for example load the javascript code in the footer (with the rest of the javascript code) and in the header the css code
Like for example if my placeholder has element load the field js in the footer..etc
It is posible!
Thanks in advance.