Opened 15 years ago

Closed 15 years ago

Last modified 13 years ago

#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)

Change History (2)

comment:1 by Russell Keith-Magee, 15 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #12705

comment:2 by Jacob, 13 years ago

milestone: 1.2

Milestone 1.2 deleted

Note: See TracTickets for help on using tickets.
Back to Top