Monday 05 May 2003 2:46:43 pm
Hi! Create a line_class_<id of your new class>.tpl in override/templates/node/view/ and include code like this:
<table>
<tr>
<td>
Category:
</td>
<td>
{attribute_view_gui attribute=$node.object.data_map.category}
</td>
<td>
Year:
</td>
<td>
{attribute_view_gui attribute=$node.object.data_map.year}
</td>
<td>
Language:
</td>
<td>
{attribute_view_gui attribute=$node.object.data_map.language}
</td>
</tr> </table> If you want a full view of you class, create full_class_<id of your class>.tpl
|