I’ve been working on this problem for a long time and have not found a solution yet. I use flex-objects to create events and display them chronological, which works fine. But I would like to be able to click on an event and to be its own page with further information and a form to sing up for.
So far I have managed that the title of each event acts as a link, which looks like this:
<h3 class="titel">
<a class="seminar-link" href="{{ base_url }}/seminare/{{ object.url }}">
{{object.titel }}</a>
</h3>
this does open a page with the correct url, but it only displays ‘Error!’ and I could not come up with an idea how to solve this or work around it.
Thanks in advance for any help.