Forums / Setup & design / event for asite
santosh kumar
Tuesday 17 February 2004 2:51:52 am
Hi , vidar thanks for the help i have got the list of events in the site . Now i need to display the date associated with that event in the list of events For example it shuld display ---> event1 21jan1993 event2 31jan1923 event3 24april 1987 etc etc .... Now when i click Event1 it shuld dispaly the details of event1 and when i view the Event link in the main page the next event event2 shuld be the first event displayed and when i click the event 2 then the event 3 shuld be first and event2 2nd and event1 3rd shuld be dispalyed I hope any one will help me out could any one give me the code for that /.. this is the templatef ile full_view_events_folder <div class="pagetitle"> View Events</div>
{* Grab all the child nodes. *} {let children=fetch( content, list, hash( parent_node_id, $node.node_id,sort_by, $node.sort_array ))}
<table class="events_list" cellpadding="10" cellspacing="10" border="0">
{* Loop through all nodes that we just fetched. *}{section name=Child loop=$children}
{* Output the name as a link to the node containing the member. *} <tr> <td> <a href={$:item.url_alias|ezurl}>{$:item.name}</a> </td></tr>
{* End of loop. *}{/section}
</table>
{/let}
santosh
James Packham
Tuesday 17 February 2004 4:12:12 am
Just add stuff to your <a> tags and pipe it with the apprpiate date format (otherwise it'll just be unix time) :)
examples
<a href={$:item.url_alias|ezurl}>{$:item.name} {$:item.published|l10n(shortdate)}</a>
<a href={$:item.url_alias|ezurl}>{$:item.name} {$:item.modified|datetime(custom,"%m %y")}</a>
see documentation on custom dates for more info.
Regards,
James