A Python port of the Invisible Internet Project (I2P)
at main 15 lines 487 B view raw
1{% extends "base.html" %} 2{% block title %}{{ section|capitalize }} Configuration{% endblock %} 3{% block content %} 4<h1>{{ section|capitalize }} Configuration</h1> 5<div class="card"> 6 <form method="POST"> 7 <table> 8 {% for key, val in properties.items() %} 9 <tr><th>{{ key }}</th><td><input name="{{ key }}" value="{{ val }}"></td></tr> 10 {% endfor %} 11 </table> 12 <p><button type="submit">Save</button></p> 13 </form> 14</div> 15{% endblock %}