voltron wrote:
> nevermind
> 
> <table>
>         % for item in c.links:
>             <tr>
>                <td>${item}</td>
>             </tr>
>         % endfor
>       </table>

Nothing to do about your initial problem, but by reading your HTML, I 
can only suggest that you'd probably prefer using HTML unordered lists 
<ul>, list items <li> and format the output with CSS instead of using 
tables.

<ul>
   % for item in c.links:
     <li>${item}</li>
   % endfor
</ul>

I like to point this link once in a while:

   http://hotdesign.com/seybold/everything.html

Regards,
-- 
Alexandre CONRAD


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to