{% extends "layout.html" %}
{% block title %}Update software profile{% endblock %}
{% block head %}
  {{ super() }}
    <script src="{{ url_for('static', filename='js/ace/ace-uncompressed.js') }}" type="text/javascript" charset="utf-8"></script>
    <script src="{{ url_for('static', filename='js/ace/theme-crimson_editor.js') }}" type="text/javascript" charset="utf-8"></script>
    <script src="{{ url_for('static', filename='js/ace/mode-buildout.js') }}" type="text/javascript" charset="utf-8"></script>
  <script src="{{ url_for('static', filename='js/scripts/editor.js') }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}
{% block body %}
<form method=post class=add-entry>
    <dl>
        <dd><h2>Software Profile:</h2></dd>
        <dd>
           <div class="main_content">
<pre id="editor"></pre>
            </div>
            <input type="hidden" name="profile" id="profile" value="{{ profile|safe }}" />
        </dd>
        <dd><input type=submit value=Update id="save" class="button"></dd>
    </dl>
</form>
{% endblock %}