mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 07:35:51 +00:00
23 lines
691 B
HTML
23 lines
691 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="alert alert-primary" role="alert">
|
|
<h3>Configuration</h3>
|
|
<table class="table table-stripped table-hover bg-light">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Key</th>
|
|
<th scope="col">Value</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item, value in config_env.items() %}
|
|
<tr>
|
|
<td>{{ item }}</td>
|
|
<td>{{ value }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock content %}
|