Tagged Questions
0
votes
1answer
270 views
Showing partial tabular inline models in Django
Let's see if I can explain myself, I have this models:
class BillHeader(models.Model):
number = models.CharField(_('Bill number'), max_length=10, unique=True, \
default=__number)
client = ...
0
votes
1answer
862 views
UserProfile StackedInLine/TabularInLine redesigned
Hello everyone and thanks for reading.
I have a simple problem that I want to get rid of and I have not seen
examples where this is achieved yet although searching around the net
for quite a while.
...
-1
votes
1answer
41 views
Is there a model to allow Django to insert or append records in the TabularInline style to the main table?
Following the style of the Django tutorial I want to add records in the TabularInline style on the main table, not in the master/detail style used in the tutorial.
The ideal approach would be to have ...