--This is the Model definition
FEEDBACK_CHOICES = (
(1, 'FOR'),
(-1, 'AGAINST'),
(0, 'NEUTRAL'),
)
class user (models.Model):
user_name = models.CharField(max_length=150)
class comments (models.Model):
comment = models.CharField(max_length=1000)
Hi,
I am building a website for non-profit work using Django but i got stuck at one
place.
It would be great if somebody help me in resolving some of my question.
I need only an hr of you.
Regards
~Nirmal
--
You received this message because you are subscribed to the Google Groups
"Django de