{% extends "layout.html" %} {% block title %}View {{ type }} log{% endblock %} {% block head %} {{ super() }} <script src="{{ url_for('static', filename='js/scripts/viewlog.js') }}" type="text/javascript" charset="utf-8"></script> {% endblock %} {% block body %} <input type="hidden" name="type" value="{{type}}" id="type" /> <h2 class="hight hide" id="logheader">Slapgrid result for {{ type }}</h2> <div class="log_btn" id="logconfigbox" style="display:none"> <span style="margin-left:15px; font-size: 18px;"> Update parameters </span> <input type="radio" name="liveupdate" id="manual" value="manual" /> <label for="manual">Manualy update</label> <input type="radio" name="liveupdate" id="live" value="live" /> <label for="live">Live update</label> <input type="radio" name="liveupdate" id="slow" value="slow" /> <label for="slow">From time to time</label> </div> <br/> <div class="log_content"><div class="log" id="salpgridLog"></div> <textarea class="log" readonly id="manualLog" style="display:none">{{result}}</textarea></div> {% endblock %}