Re: ANN: Mezzanine 1.0 released

2012-03-03 Thread uno...@gmail.com
Stephen, Amazing work with Mezzanine and Cartridge. One question I had for you - have you considered separating Cartridge from the dependency on Mezzanine. I think Cartridge adoption will increase quite a lot if the interdependency is removed. I realize though, that this means more issues with

question about facebook connect and django voting

2009-11-12 Thread uno...@gmail.com
I'm trying to find the most efficient way to accomplish the below: I have a list of users (facebook friends) for a user - these users are objects of the Django User model: [friend1,friend2, friend3..] I use the django voting app where users can vote on an item. the resulting page has 10 items

Question regarding post_save signal

2009-03-11 Thread uno...@gmail.com
I have a post_save signal that connects to a handler (myhandler). i want to pass the user that generated the signal -- for example, say which user created a comment, which user wrote a post etc. Now I could use the foreignKey fields to the User model that are defined in my comment and post

Re: what would be a good schema for a facebook mini feed like app ?

2009-03-04 Thread uno...@gmail.com
nice.. thanks, that answers my question. On Mar 4, 11:09 am, Rajesh D <rajesh.dha...@gmail.com> wrote: > On Mar 4, 10:25 am, "uno...@gmail.com" <uno...@gmail.com> wrote: > > > I have community features in my app - commenting, favoriting,friending >

what would be a good schema for a facebook mini feed like app ?

2009-03-04 Thread uno...@gmail.com
I have community features in my app - commenting, favoriting,friending etc. I'm wondering what would be a good schema for a facebook like mini feed app ? Where each user's acitivity stream is showed on their profile page. thanks. --~--~-~--~~~---~--~~ You

modelform bound to an instance - imagefield issues

2009-03-03 Thread uno...@gmail.com
I have a model which has an imagefield. I have a modelform which uses this model and in case of editing, uses the instance to populate the form fields. While the other fields (like charfield, textfield etc.) get populated with the instance values correctly, is there any way I can show the

Re: error while trying save a model form

2009-02-26 Thread uno...@gmail.com
Daniel, thanks much. That was the problem. Damn -- its so freakishly easy to miss such nasty little things when you're over worked :-) thanks again. -pranav. On Feb 26, 4:03 pm, Daniel Roseman <roseman.dan...@googlemail.com> wrote: > On Feb 26, 8:12 pm, "uno...@gmail.com"

error while trying save a model form

2009-02-26 Thread uno...@gmail.com
I have the following model form: class EditProfileForm(ModelForm): class Meta: model = UserProfile exclude = ('user',) The corresponding model is: class UserProfile(models.Model): user = models.ForeignKey(User) firstname =