6
I thought Iโd chime in that editing your template is going to be the easiest.
I tried iterating over the formsets in render_change_form
but unfortunately, the major problem is that InlineAdminForm
s are constructed dynamically upon iteration in the template so you canโt just set inlineadminform.original = None
or modify the context.
They donโt even exist until assigned a variable in the template.
# InlineAdminFormset
def __iter__(self):
for form, original in zip(self.formset.initial_forms, self.formset.get_queryset()):
yield InlineAdminForm(self.formset, form, self.fieldsets,
self.opts.prepopulated_fields, original, self.readonly_fields,
model_admin=self.model_admin)
and the only easily non-hackishly accessible hook we have there is overriding InlineAdminFormset.formset.get_queryset()
which breaks other things.
Can I share some code nobody should ever really look at but works and makes me crack up laughing? I owe you one payne. Hope I can get to sleep tonight.
67
@sjaak-schilperoort Nice one! CSS is indeed the โtrickโ to use. Example of the class Foo
which has Bar
as inline.
static/css/hide_admin_original.css
:
td.original p {
visibility: hidden
}
.inline-group .tabular tr.has_original td {
padding-top: 5px;
}
admin.py
:
class FooAdmin(admin.ModelAdmin):
inlines = [ BarInline, ]
class Media:
css = { "all" : ("css/hide_admin_original.css",) }
admin.site.register(Foo, FooAdmin)
- [Django]-Django : Can't import 'module'. Check that module AppConfig.name is correct
- [Django]-Django debug display all variables of a page
- [Django]-How to add column in ManyToMany Table (Django)
4
I took a slightly different approach. Itโs a little hackish. This replaces the โoriginalโ string with a blank string, so the td for class=original still gets rendered leaving a gap above the edit boxes.
I like the CSS solution better (I had to use โpadding-top: 5px;โ to get the rendering right).
models.py:
class Model(model.Model):
general_questions = models.TextField()
_hide = False
def __unicode__(self):
if _hide:
return ''
admin.py:
class ModelInline(admin.TabularInline):
model = Model
extra = 0
class ModelAdmin(admin.ModelAdmin):
inlines = [ModelInline, ]
def render_change_form(self, request, context, *args, **kwargs):
for formset in context['inline_admin_formsets']:
qs = formset.formset.queryset
for model_obj in qs:
model_obj._hide = True
return super(ModelAdmin, self).render_change_form(request, context, *args, **kwargs)
- [Django]-Django python date time set to midnight
- [Django]-Sending HTML email in django
- [Django]-Accepting email address as username in Django
- [Django]-Django Model Field Default Based Off Another Field in Same Model
- [Django]-Django models.py Circular Foreign Key
- [Django]-Django โ how to unit test a post request using request.FILES
1
In case anyone is looking to hide the header on a StackedInline
, I used Rickยดs approach but adding this css:
div.inline-related h3{
visibility: hidden;
height: 0;
}
- [Django]-How to update multiple fields of a django model instance?
- [Django]-Allow only positive decimal numbers
- [Django]-Django โ Annotate multiple fields from a Subquery
1
the simplest way to do so is by adding a css to the template file, the answer by Rick van der Zwet is the best one
- [Django]-Django REST Framework POST nested objects
- [Django]-Django: using blocks in included templates
- [Django]-How can I list urlpatterns (endpoints) on Django?
- [Django]-Gunicorn, no module named 'myproject
- [Django]-Django set default form values
- [Django]-Using Django auth UserAdmin for a custom user model