32 lines
874 B
Twig
32 lines
874 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}System Settings{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>System Settings</h1>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Description</th>
|
|
<th>Value</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for system_config in system_configs %}
|
|
<tr>
|
|
<td>{{ system_config.description }}</td>
|
|
<td>{{ system_config.value }}</td>
|
|
<td>
|
|
<a class="btn btn-primary" href="{{ path('app_system_config_edit', {'id': system_config.id}) }}">edit</a>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="3">no records found</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|