#5609: newforms-admin: input fields do not regard field class
---------------------------+------------------------------------------------
Reporter: anonymous | Owner: nobody
Status: new | Component: Admin interface
Version: newforms-admin | Keywords: newforms-admin length input class
Stage: Unreviewed | Has_patch: 0
---------------------------+------------------------------------------------
I tried the newforms-admin branch, and noticed input field length for a
SmallInteger field is wider than the trunk. Below is excerpt from the html
source from newforms-admin branch and trunk. The one from newforms-admin
is missing class=... etc.
newforms-admin:
{{{
<label for="id_treatment_visits" class="required">Treatment
visits:</label>
<input type="text" name="treatment_visits" value="19"
id="id_treatment_visits" />
}}}
trunk:
{{{
<label for="id_treatment_visits" class="required">Treatment
visits:</label>
<input type="text" id="id_treatment_visits" class="vSmallIntegerField
required" name="treatment_visits" size="5" value="19" maxlength="5" />
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/5609>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---