List child objects in a table

Author Message

Benjamin Selmer

Thursday 06 October 2005 1:42:48 am

I have made a overide template for node/view/full/folder

I want to list the child objects of a spesific node in a table with two columns.

I tried witht the following code:

{def $column=1}
            <table class="class-butikker">
                {section var=child loop=$list_items sequence=array(bglight,bgdark)}
		    {if eq($column, 1)}
		    {set $column=2}
		    <tr>
			<td>
			{node_view_gui view=line content_node=$child}
			</td>
		    {else}
		    {set $column=1}
			<td>
			{node_view_gui view=line content_node=$child}
			</td>
		    </tr>
		    {/if}
                {/section}
            </table>

It seems that eZ Publish automatically closes the tags. The result is that i get one column and not two.

Does anyone know of a clever way to solve this?

Roy Bøhmer

Thursday 06 October 2005 2:45:45 am

I think you have a bug in your if-statement. It forces eZ to only input one td-tag for each tr. Not sure what you need the $column for. Try:

{def $column=1}
<table class="class-butikker">
  {section var=child loop=$list_items sequence=array(bglight,bgdark)}
 <tr>
    {set $column=1}
    <td>
       {node_view_gui view=line content_node=$child}
    </td>
    
    {set $column=2}
    <td>
	{node_view_gui view=line content_node=$child}
    </td>
  </tr>
 {/section}
</table>

This will result in two identical columns.

Benjamin Selmer

Thursday 06 October 2005 3:27:23 am

Two identical columns is of no use.

This is how i wanted it to work:

if column variable equals 1:
-insert tr start tag
-insert td
-set column variable=2

if column variable equals 2:
-insert td
-insert tr end tag
-set column variable=1

This should result in a table with two columns, but eZ automatically closes the tr after the first td.

I guess i coluld get a table-like result by floating the div's with css. But that does not work properly with all browsers.

Roy Bøhmer

Thursday 06 October 2005 6:19:53 am

Sorry, I read it too quick.

I've never heard of ez automatic closing tags. Actually your code looks ok.

Are you sure templates/node/view/line.tpl (or an override) doesn't contain any <tr></tr>?

Thats all I can think of right now, but I admit I don't think that's the problem :-)
Could you post the relevant html-output?

Roy

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 19 2025 01:00:39
Script start
Timing: Jan 19 2025 01:00:39
Module start 'layout'
Timing: Jan 19 2025 01:00:39
Module start 'content'
Timing: Jan 19 2025 01:00:40
Module end 'content'
Timing: Jan 19 2025 01:00:40
Script end

Main resources:

Total runtime0.6352 sec
Peak memory usage4,096.0000 KB
Database Queries60

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0046 590.2734152.6250
Module start 'layout' 0.00460.0039 742.898439.4453
Module start 'content' 0.00850.6252 782.3438524.4297
Module end 'content' 0.63370.0014 1,306.773412.1641
Script end 0.6351  1,318.9375 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00370.5816160.0002
Check MTime0.00170.2632160.0001
Mysql Total
Database connection0.00070.108010.0007
Mysqli_queries0.580391.3628600.0097
Looping result0.00060.0940580.0000
Template Total0.607595.620.3037
Template load0.00200.315820.0010
Template processing0.605595.325520.3027
Template load and register function0.00010.018410.0001
states
state_id_array0.00120.182510.0012
state_identifier_array0.00070.115720.0004
Override
Cache load0.00170.2708350.0000
Sytem overhead
Fetch class attribute can translate value0.00060.087020.0003
Fetch class attribute name0.00110.173050.0002
XML
Image XML parsing0.00180.291120.0009
class_abstraction
Instantiating content class attribute0.00000.002360.0000
General
dbfile0.00200.3137160.0001
String conversion0.00000.001440.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
2content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
4content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
9content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
3content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 22
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs