Add post and species forms

Squashed commit of the following:
Author: Hugo PRADIER <Hugo.PRADIER2@etu.uca.fr>
Author: bastien ollier <bastien.ollier@etu.uca.fr>
Author: clfreville2 <clement.freville2@etu.uca.fr>
Reviewed on #7
This commit is contained in:
2024-06-07 17:49:12 +02:00
parent 82a3f69fa4
commit 49d60871c9
29 changed files with 740 additions and 86 deletions

View File

@@ -0,0 +1,4 @@
<form method="post" action="{{ path('app_post_delete', {'id': post.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ post.id) }}">
<button class="btn">Delete</button>
</form>

View File

@@ -0,0 +1,4 @@
{{ form_start(form) }}
{{ form_widget(form) }}
<button class="btn">{{ button_label|default('Save') }}</button>
{{ form_end(form) }}

View File

@@ -0,0 +1,13 @@
{% extends 'base.html.twig' %}
{% block title %}Edit Post{% endblock %}
{% block body %}
<h1>Edit Post</h1>
{{ include('post/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_post_index') }}">back to list</a>
{{ include('post/_delete_form.html.twig') }}
{% endblock %}

View File

@@ -1,11 +0,0 @@
{% extends 'base.html.twig' %}
{% block title %}Posts!{% endblock %}
{% block body %}
{% for post in posts %}
<div class="card">
#{{ post.id }} trouvé le {{ post.foundDate | date("d/m/Y \\à H \\h") }}
</div>
{% endfor %}
{% endblock %}

View File

@@ -0,0 +1,11 @@
{% extends 'base.html.twig' %}
{% block title %}New Post{% endblock %}
{% block body %}
<h1>Create new Post</h1>
{{ include('post/_form.html.twig') }}
<a href="{{ path('app_post_index') }}">back to list</a>
{% endblock %}

View File

@@ -0,0 +1,46 @@
{% extends 'base.html.twig' %}
{% block title %}Post{% endblock %}
{% block body %}
<h1>Post</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ post.id }}</td>
</tr>
<tr>
<th>FoundDate</th>
<td>{{ post.foundDate ? post.foundDate|date('Y-m-d H:i:s') : '' }}</td>
</tr>
<tr>
<th>PublicationDate</th>
<td>{{ post.publicationDate ? post.publicationDate|date('Y-m-d H:i:s') : '' }}</td>
</tr>
<tr>
<th>Latitude</th>
<td>{{ post.latitude }}</td>
</tr>
<tr>
<th>Longitude</th>
<td>{{ post.longitude }}</td>
</tr>
<tr>
<th>Altitude</th>
<td>{{ post.altitude }}</td>
</tr>
<tr>
<th>Commentary</th>
<td>{{ post.commentary }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_post_index') }}">back to list</a>
<a href="{{ path('app_post_edit', {'id': post.id}) }}">edit</a>
{{ include('post/_delete_form.html.twig') }}
{% endblock %}

View File

@@ -0,0 +1,45 @@
{% extends 'base.html.twig' %}
{% block title %}Post index{% endblock %}
{% block body %}
<h1>Post index</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>FoundDate</th>
<th>PublicationDate</th>
<th>Latitude</th>
<th>Longitude</th>
<th>Altitude</th>
<th>Commentary</th>
<th>actions</th>
</tr>
</thead>
<tbody>
{% for post in posts %}
<tr>
<td>{{ post.id }}</td>
<td>{{ post.foundDate ? post.foundDate|date('Y-m-d H:i:s') : '' }}</td>
<td>{{ post.publicationDate ? post.publicationDate|date('Y-m-d H:i:s') : '' }}</td>
<td>{{ post.latitude }}</td>
<td>{{ post.longitude }}</td>
<td>{{ post.altitude }}</td>
<td>{{ post.commentary }}</td>
<td>
<a href="{{ path('app_post_show', {'id': post.id}) }}">show</a>
<a href="{{ path('app_post_edit', {'id': post.id}) }}">edit</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="8">no records found</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_post_new') }}">Create new</a>
{% endblock %}

View File

@@ -0,0 +1,4 @@
<form method="post" action="{{ path('app_species_delete', {'id': species.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ species.id) }}">
<button class="btn">Delete</button>
</form>

View File

@@ -0,0 +1,4 @@
{{ form_start(form) }}
{{ form_widget(form) }}
<button class="btn">{{ button_label|default('Save') }}</button>
{{ form_end(form) }}

View File

@@ -1,43 +0,0 @@
{% extends 'base.html.twig' %}
{% block title %}Herbarium - Détail de l'espèces{% 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>{{ specie.vernacularName }}</h1>
<p>
🔬 Nom Scientifique : {{ specie.scientificName }}<br/>
📍 Region : {{ specie.region }}
</p>
<div>
<h2>Posts :</h2>
{% for post in specie.posts %}
<div>
<dt>
<h3>
<a href="">
📅 {{ post.publicationDate | date }}
</a>
</h3>
</dt>
<dd>
📍 géolocalisation :<br/>
- Longitude : {{ post.longitude }}<br/>
- Latitude : {{ post.latitude }}<br/>
- Altitude : {{ post.altitude }}<br/><br/>
💬 Commentaire :<br/>
- {{ post.getCommentary }}
</dd>
</div>
{% endfor %}
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,13 @@
{% extends 'base.html.twig' %}
{% block title %}Edit Species{% endblock %}
{% block body %}
<h1>Edit Species</h1>
{{ include('species/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_species_index') }}">back to list</a>
{{ include('species/_delete_form.html.twig') }}
{% endblock %}

View File

@@ -1,6 +1,6 @@
{% extends 'base.html.twig' %}
{% block title %}Herbarium - Espèces{% endblock %}
{% block title %}Species{% endblock %}
{% block body %}
<style>
@@ -14,16 +14,17 @@
<dl>
{% for specie in species %}
<dt>
<a href={{ url('app_species') ~ '/' ~ specie.getId }}>
🌿 {{ specie.getVernacularName }}
<a href={{ path('app_species_show', {'id': specie.id}) }}>
🌿 {{ specie.vernacularName }}
</a>
</dt>
<dd >
🔬 Nom Scientifique : {{ specie.getScientificName }}<br/>
📍 Region : {{ specie.getRegion }}
🔬 Nom Scientifique : {{ specie.scientificName }}<br/>
📍 Region : {{ specie.region }}
</dd><br/>
{% endfor %}
</dl>
<a href="{{ path('app_species_new') }}">Create new</a>
</div>
{% endblock %}

View File

@@ -0,0 +1,11 @@
{% extends 'base.html.twig' %}
{% block title %}New Species{% endblock %}
{% block body %}
<h1>Create new Species</h1>
{{ include('species/_form.html.twig') }}
<a href="{{ path('app_species_index') }}">back to list</a>
{% endblock %}

View File

@@ -0,0 +1,36 @@
{% extends 'base.html.twig' %}
{% block title %}Species{% endblock %}
{% block body %}
<h1>{{ species.vernacularName }}</h1>
<p>
🔬 Nom Scientifique : {{ species.scientificName }}<br/>
📍 Region : {{ species.region }}
</p>
<div>
<h2>Posts :</h2>
{% for post in species.posts %}
<div>
<dt>
<h3>{{ post.publicationDate | date }}</h3>
</dt>
<dl>
<dt>📍Géolocalisation</dt>
<dd>{{ post.longitude }} - {{ post.latitude }}</dd>
<dt>📍Commentaire</dt>
<dd>{{ post.getCommentary }}</dd>
</dl>
</div>
{% endfor %}
<a href="{{ path('app_species_index') }}">back to list</a>
<a href="{{ path('app_species_edit', {'id': species.id}) }}">edit</a>
{{ include('species/_delete_form.html.twig') }}
</div>
{% endblock %}

View File

@@ -0,0 +1,39 @@
{% extends 'base.html.twig' %}
{% block title %}Species index{% endblock %}
{% block body %}
<h1>Species index</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Scientific_name</th>
<th>Vernacular_name</th>
<th>Region</th>
<th>actions</th>
</tr>
</thead>
<tbody>
{% for species in species %}
<tr>
<td>{{ species.id }}</td>
<td>{{ species.scientificName }}</td>
<td>{{ species.vernacularName }}</td>
<td>{{ species.region }}</td>
<td>
<a href="{{ path('app_species_show', {'id': species.id}) }}">show</a>
<a href="{{ path('app_species_edit', {'id': species.id}) }}">edit</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="5">no records found</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_species_new') }}">Create new</a>
{% endblock %}