saufen/templates/system_config/index.html.twig
lubiana 476f91f7cf
All checks were successful
/ ls (pull_request) Successful in 1m26s
/ ls (release) Successful in 51s
/ ls (push) Successful in 1m23s
emojis
2025-06-16 20:20:22 +02:00

32 lines
1.2 KiB
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 %}