config.edit.html
661 Bytes
{% extends "layout-with-topbar.html" %}
{% block content %}
<form method="POST">
<input type="hidden" name="scope" value="{{ scope }}">
<input type="hidden" name="keyword" value="{{ keyword }}">
<div class="form-group">
<label for="{{ scope }}.{{ keyword }}.newValue">{{ scope }}.{{ keyword }}</label>
<input name="newValue" type="text" class="form-control" id="{{ scope }}.{{ keyword }}.newValue" placeholder="New value" value="{{ old_value }}">
</div>
<button type="submit" class="btn btn-primary">Simpan</button>
<a class="btn btn-default" href="/config" role="button">Batal</a>
</form>
{% endblock %}