#12835 closed (duplicate)
Setting date fields on new admin inlines does not work.
Reported by: | jbronn | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Keywords: | admin inline date | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The problem is that the date and time form fields do not autocomplete when clicking the "Today" link or selecting a date from the calendar widget. This occurs only on newly added inline models, e.g., after hitting the "Add another" link. Example code below may be used to reproduce this bug.
models.py:
from django.db import models class Place(models.Model): name = models.CharField(max_length=32) def __unicode__(self): return self.name class Person(models.Model): name = models.CharField(max_length=32) dob = models.DateTimeField() place = models.ForeignKey(Place) def __unicode__(self): return self.name
admin.py:
from django.contrib import admin from models import Person, Place class PersonInline(admin.StackedInline): model = Person class PlaceAdmin(admin.ModelAdmin): inlines = [ PersonInline, ] admin.site.register(Person) admin.site.register(Place, PlaceAdmin)
Note:
See TracTickets
for help on using tickets.
Duplicate of #12705