Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Probleme modify detailed link

Quote Reply
Probleme modify detailed link
Hi,

(Sorry my first language is french) ;-)

I have a question. I modify links to have a detailed page. I buit a detailed_form.html and it work find to add link, but when a try to modify detailed link, (in user side) the modify_select.html template don't jump me to the detailed_form.html !? juste to the include_form.html

I put someting like that in modify.html (same as add.html)

<%if detailed%>
<%include include_detailedform.html%>
<%else%>
<%include include_form.html%>
<%endif%>

but, juste the incude_form appear

I need help!

Thank

Rene
Quote Reply
Re: [reneb] Probleme modify detailed link In reply to
Usually the fields for the detailed page are included in the same 'add' and 'modify' forms as the links.

Looking at:
Quote:

<%if detailed%>

..have you got a field called detailed that contains information for the detailed pages?

You have used
Quote:
<%include include_detailedform.html%>

but you have called your template 'detailed_form.html'
You would need to use
<%include detailedform.html%>
Quote Reply
Re: [Alba] Probleme modify detailed link In reply to
Usually the fields for the detailed page are included in the same 'add' and 'modify' forms as the links.

Yes the fields for the "detailed" is included in "add" and "modify"


..have you got a field called detailed that contains information for the detailed pages?

Yes a have in my links.html and detailed.html

You have used
Quote
<%include include_detailedform.html%>

but you have called your template 'detailed_form.html'
You would need to use
<%include detailedform.html%>

Sorry, my file is realy call "include_detailedform.html

I don't find the problem...Unsure
Quote Reply
Re: [reneb] Probleme modify detailed link In reply to
Please,

I don't find the problem!

How to access to modify a detailed link in user side??