Hi everyone,
I have an EE2 site that uses the standalone entry form to allow users to add entries. There are two profiles: one allows a user to add only one entry, the other allows the user to add many entries.
The site works great for the first profile; I simply check if an entry exists or not. If it does, I go to the edit page, if not I show the add page.
For the second, there is no problem adding multiple entries and then listing them on a list page (see attached images). However, I can’t figure out how to display the corresponding edit form for each entry in the list. This is the code I use at the moment for the list, simple links going nowhere and a check to see if any entries exist already :
<ul>
{exp:channel:entries channel="Fiche" author_id="CURRENT_USER" status="Open|Closed"}
<li><a href="http://">{title}</a></li>
{if no_results}
{redirect="Pages/Add/fr"}
{/if}
{/exp:channel:entries}
</ul>Would anyone be able to point me in the right direction? I’m have a really hard time with this!
Thanks in advance.