commti after qwen start
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<table class="tab_cadre_fixehov">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('Date') }}</th>
|
||||
<th>{{ __('Hash') }}</th>
|
||||
<th>{{ __('User') }}</th>
|
||||
<th>{{ __('Actions') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for config in configs %}
|
||||
<tr class="tab_bg_1">
|
||||
<td>{{ config.created_at }}</td>
|
||||
<td><code>{{ config.config_hash|slice(0, 16) }}...</code></td>
|
||||
<td>{{ config.users_id|getUserName }}</td>
|
||||
<td>
|
||||
{% if can_export %}
|
||||
<a href="{{ path('/plugins/netconfig/ajax/export.php') }}?id={{ config.id }}" class="btn btn-sm btn-outline-primary">
|
||||
<i class="fas fa-download"></i> {{ __('Export') }}
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if config.diff_html is defined %}
|
||||
<button class="btn btn-sm btn-outline-info" onclick="alert('Diff: {{ config.diff_html|escape }}')">
|
||||
{{ __('View Diff') }}
|
||||
</button>
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr class="tab_bg_1"><td colspan="4" class="center">{{ __('No configuration saved yet') }}</td></tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user