emojis
All checks were successful
/ ls (pull_request) Successful in 1m26s
/ ls (release) Successful in 51s
/ ls (push) Successful in 1m23s

This commit is contained in:
lubiana 2025-06-16 20:10:48 +02:00
parent f0c738362a
commit 476f91f7cf
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
27 changed files with 401 additions and 174 deletions

View file

@ -1,4 +1,4 @@
{{ form_start(form) }}
{{ form_widget(form) }}
<button class="btn">{{ button_label|default('Save') }}</button>
<button class="btn">{{ button_label|default('💾✨ SAVE!!! 🎉🎊💃🕺🚀💫⚡🔥💯') }}</button>
{{ form_end(form) }}

View file

@ -1,4 +1,4 @@
<form method="post" action="{{ path('app_system_config_reset', {'id': system_config.id}) }}" onsubmit="return confirm('Are you sure you want to reset this setting to its default value?');">
<form method="post" action="{{ path('app_system_config_reset', {'id': system_config.id}) }}" onsubmit="return confirm('🚨💀⚠️ ARE YOU SURE YOU WANT TO RESET THIS SETTING TO ITS DEFAULT VALUE?!!! 😱💔🔥');">
<input type="hidden" name="_token" value="{{ csrf_token('reset' ~ system_config.id) }}">
<button class="btn">Reset</button>
<button class="btn">🔄💀 RESET!!! 🔥💥⚡<F09F92A5><E29AA1></button>
</form>

View file

@ -1,13 +1,13 @@
{% extends 'base.html.twig' %}
{% block title %}Edit System Setting{% endblock %}
{% block title %}✏️📝 EDIT SYSTEM SETTING!!! 🔥💯⚡🚀💫⭐✨🎉🎊💃🕺🎈🎁🎀🎂🍰🧁🍭🍬🍫🍩🍪🎪🎨🎭🎪🎯🎲🎰{% endblock %}
{% block body %}
<h1>Edit System Setting: {{ system_config.key.name }}</h1>
<h1>✏️📝⚙️🔧 EDIT SYSTEM SETTING!!! {{ system_config.key.name }} 🔥💯⚡🚀💫⭐✨🎉🎊💃🕺🎈🎁🎀🎂🍰🧁🍭🍬🍫🍩🍪🎪🎨🎭🎪🎯🎲🎰</h1>
{{ include('system_config/_form.html.twig', {'button_label': 'Update'}) }}
{{ include('system_config/_form.html.twig', {'button_label': '🔄💯 UPDATE!!! 🚀💫⚡🔥'}) }}
<a href="{{ path('app_system_config_index') }}">back to list</a>
<a href="{{ path('app_system_config_index') }}">↩️📋 BACK TO LIST!!! 🎉🎊✨💃🕺</a>
{{ include('system_config/_reset_form.html.twig') }}
{% endblock %}

View file

@ -1,30 +1,30 @@
{% extends 'base.html.twig' %}
{% block title %}System Settings{% endblock %}
{% block title %}⚙️🔧🔩🛠️ SYSTEM SETTINGS!!! 🎉🎊✨💃🕺🎈🎁🎀🎂🍰🧁🍭🍬🍫🍩🍪🎪🎨🎭🎪🎯🎲🎰{% endblock %}
{% block body %}
<h1>System Settings</h1>
<h1>⚙️🔧🔩🛠️🎉🎊✨ SYSTEM SETTINGS!!! 💃🕺🎈🎁🎀🎂🍰🧁🍭🍬🍫🍩🍪🎪🎨🎭🎪🎯🎲🎰🎊🎉</h1>
<table class="table">
<thead>
<tr>
<th>Description</th>
<th>Value</th>
<th>Actions</th>
<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>📝 {{ 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>
<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>
<td colspan="3">😭💔 NO RECORDS FOUND!!! 😢🚫❌</td>
</tr>
{% endfor %}
</tbody>