"Nevyn" <[EMAIL PROTECTED]> writes: > The db table has has three fields, 'Team, Group, Enemy' I haven't > created a form yet, so I have manually been adding the data. > Is that what you mean?
Yes. Then, you probably have an FK to the student, so that you can filter his projects. You can change your template to use that FK to get the data OR you can do as I said and add the first and last attributes to the resulting object. In [1]:import model In [2]:analises = model.Analise.select() In [3]:analises.first = 'First' In [4]:analises.last = 'last' In [5]: -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

