Hello, I would like to ask for your help, as I am completely new to this and I’m a bit lost.
I want to create a dynamic table, meaning that through a form, I enter data that gets saved to the data folder. On another page, I want to display a table that shows this data row by row. Essentially, the data from the form should be added to the table.
For some reason, the table never displays anything; it’s always empty, as if nothing is saved, even though I can see the YAML files in the data folder.
What am I doing wrong, please?
My form page:
---
title: Form
form:
name: form
fields:
- name: name
label: Name
type: text
validate:
required: true
- name: date
label: Date
type: date
validate:
required: true
- name: description
label: Description
type: textarea
validate:
required: true
buttons:
- type: submit
value: Submit
process:
- save:
fileprefix: contact-
dateformat: Ymd-His-u
extension: yaml
- message: "Thank you for your submission!"
---
And this is my page with table:
---
title: 'Table'
---
{% set form_data_dir = 'user://data/form/' %}
{% set files = grav.files.find(form_data_dir) %}
{% if files is not empty %}
<table border="1">
<thead>
<tr>
<th>Name</th>
<th>Date</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for file in files %}
{% set data = file.yaml() %}
<tr>
<td>{{ data.name }}</td>
<td>{{ data.date | date("Y-m-d") }}</td>
<td>{{ data.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>No form submissions found.</p>
{% endif %}
Thank you so much