Initial commit

This commit is contained in:
2022-03-25 16:42:41 +01:00
commit 34685838bc
235 changed files with 12766 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
<div class="container-fluid">
{% block body %}{% endblock %}
</div>
</body>
</html>
+23
View File
@@ -0,0 +1,23 @@
{% extends 'base.html.twig' %}
{% block title %}Hello TaxesController!{% endblock %}
{% block body %}
<style>
.example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
.example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
</style>
<div class="example-wrapper">
<h1>Hello {{ controller_name }}! ✅</h1>
This friendly message is coming from:
<ul>
<li>Your controller at <code><a href="{{ '/var/www/html/src/Controller/TaxesController.php'|file_link(0) }}">src/Controller/TaxesController.php</a></code></li>
<li>Your template at <code><a href="{{ '/var/www/html/templates/taxes/index.html.twig'|file_link(0) }}">templates/taxes/index.html.twig</a></code></li>
</ul>
</div>
{{ form(form) }}
{{ dump(sheet) }}
{% endblock %}
+35
View File
@@ -0,0 +1,35 @@
{% extends 'base.html.twig' %}
{% block title %}Tax summary{% endblock %}
{% block body %}
<div class="row justify-content-md-center" style="margin-top: 150px;">
<div class="col col-md-6">
{% if taxes %}
<table class="table table-dark table-striped">
<thead>
<tr>
<th>L.p.</th>
<th>Country</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{% for tax in taxes %}
<tr {% if tax.country is not defined %}class="table-success"{% endif %}>
{% if tax.country is defined %}
<td>{{ loop.index }}</td>
<td>{{ tax.country }}</td>
<td>{{ tax.value }}zł</td>
{% else %}
<td colspan="2">Summary:</td>
<td>{{ tax }}zł</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
</div>
</div>
{% endblock %}