Changes between Initial Version and Version 1 of Ticket #14858


Ignore:
Timestamp:
Dec 7, 2010, 4:05:16 PM (13 years ago)
Author:
Ramiro Morales
Comment:

This had already been reported as #14364. Will try to reproduce with the more detailed instructions above before deciding final triage status.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14858 – Description

    initial v1  
    11'''Scenario:'''
    22
    3 1. User fires up admin site in browser (bug is not browser specific), and goes to admin/app_name/model_name/
    4 2. User clicks the add button in upper-right-hand corner.
    5 3. The change_form.html template is rendered, and ready to add a new object.
    6 4. Then the user's browser complains and throws an error, because the user
    7    (for whatever--probably strange and arguably wrong--reason) made created_datetime
    8    of type DateTimeField be the first_field.
     3 1. User fires up admin site in browser (bug is not browser specific), and goes to admin/app_name/model_name/
     4 2. User clicks the add button in upper-right-hand corner.
     5 3. The change_form.html template is rendered, and ready to add a new object.
     6 4. Then the user's browser complains and throws an error, because the user (for whatever--probably strange and arguably wrong--reason) made created_datetime of type DateTimeField be the first_field.
    97
    108
     
    2119The DateTimeField outputs two fields:
    2220
    23 1. created_date_0
    24 2. created_date_1
     21 1. created_date_0
     22 2. created_date_1
    2523
    2624'''Solution:'''
Back to Top