Hey there, I am currently diving into django and experiment with the newforms api. I have found some nice blog entries about it and read the docs but for now I am wondering what the best practice for a use case like that would be:
There is a model called "Bill" which holds a bill with a receipient, a date and so on AND: BillLines. This BillLine holds information about every dicounted entry. A complete bill would look as expected: Customer Address 100 nails $0.5 1 hammer $19 total $19.5 My BillLine - model looks like this: class BillLine(models.Model): sortoder = models.FloatField() amount = models.FloatField() description = models.CharField(max_length=255) price = models.FloatField() bill = models.ForeignKey(Bill, related_name='bill_lines') The user should see an interface which stores all the "global" data such as "receipient" and a table with "bill lines". He enteres 100<tab>nails<tab>0.5 and clicks a Plus-Button to add a new line. This should add a new empty row below the "nails line" via ajax but should be executable with deactivated JS, too. What would the django way be to achieve that goal? Thank you! nuzux --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---