Re: Two lists generated by generic view on one page, impossible?

2006-05-18 Thread Kosmo
Now that was suprisingly easy, I just used the news view and imported the Events from the event app and called them both and called both of the apps and made a render_to_response with both of them in the news/index.html. I thought that there was much more work involved :| Thanks for the super fa

Re: Two lists generated by generic view on one page, impossible?

2006-05-18 Thread Kosmo
Well, if that is the case, is there a good tutorial on making views since I'm not so good with python yet. Also, if I want to have a view that is not tied to any app, how do I define it in the urls.py file? --~--~-~--~~~---~--~~ You received this message because

Two lists generated by generic view on one page, impossible?

2006-05-17 Thread Kosmo
Like the subject says. I have a "news" app and "events" app and I need them both to list their content on a page, generic view suits my needs just perfectly, but the problem comes when I want two of them in one page. Do I need to start writing my own views or can this be done with generic views?