I am using cataloger to catalog peoples which will act in some movies...
I have following categories of page
1. Man
2. Woman
both have sub-sections:
1.1. From 18-30 years
1.2. From 18-30 years
1.3. From 18-30 years
2.1. From 18-30 years
2.2. From 18-30 years
2.3. From 18-30 years
When someone clicks woman-from 18-30 years I want to list all PERSONS and ALL data for persons (each has main image and few other images, height, weight, eye-color and brief description.)
All I get when i click on category is photo with person name (I used name as "menu item").... so how to pull data out for each person? I managed to do that individually (when clicked on name), but I want to have all info on category page like I can do on a item page

I'm not good with smarty so I really don't know how to do it... All I can use on category:
Category Template Variables
{$title}, {$notes}, {$prev}, {$prevurl}, {$navstr}, {$next}, {$nexturl}, {$items}, {$categorynotes}, {$image_1_url}, {$image_thumb_1_url}, {$src_image_1_url}, {$image_url_array}, {$src_image_url_array}, {$image_thumb_url_array}
$items array contents:
$items[].title, $items[].link, $items[].image, $items[].attrname
and I need to use those variables from Item:
Item Template Variables
{$title}, {$notes}, {$height}, {$weight}, {$eyecolor}, {$dob}, {$shoesize}, {$haircolor}, {$personalinfo}, {$notes}, {$image_1_url}, {$image_thumb_1_url}, {$src_image_1_url}, {$image_2_url}, {$image_thumb_2_url}, {$src_image_2_url}, {$image_3_url}, {$image_thumb_3_url}, {$src_image_3_url}, {$image_4_url}, {$image_thumb_4_url}, {$src_image_4_url}, {$image_5_url}, {$image_thumb_5_url}, {$src_image_5_url}, {$image_6_url}, {$image_thumb_6_url}, {$src_image_6_url}, {$image_7_url}, {$image_thumb_7_url}, {$src_image_7_url}, {$image_url_array}, {$src_image_url_array}, {$image_thumb_url_array}
Any help is appreciated !