<nav>
<p><a href="/admin">.. back</a></p>
<p><b>{{ table_name }}</b></p>
- <p>Generated in {{ (time_taken * 1000)|round(2) }}ms</p>
<ol>
{% for row in table %}
<li style="border: 1px solid gray; margin-top: -1px;"><ul>
<input type="submit" value="Submit table" style="grid-column: 1 / span 4;">
</form>
- <pre>Note: Tables are rendered statically, it is not safe to opperate the same interface in two places at once.</pre>
+ <code>
+ Note: Tables are rendered statically, it is not safe to opperate the same interface in two places at once.
+ <br>
+ Processed {{ table|length * table[0]|length }} feilds in
+ {% if (time_taken * 1000)|round(2) > 20 %}
+ <span style="color: red;">{{ (time_taken * 1000)|round(2) }}ms</span>
+ {% else %}
+ {{ (time_taken * 1000)|round(2) }}ms
+ {% endif %}
+ </code>
</main>
</body>
</html>