On 8/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Currently, in the admin interface, the size of a text field is > defaulted at 50 for char vars and 10 for integer types. > > I would like to change this in the model and have it propegate through > to the admin interface. Is there a way to do this easily?
AFAIK this is currently not possible in admin without modifying the Django source. If you just want to alter the width of the text boxes in admin, you can set the width using CSS. For example, you could place the following code in templates/admin/base_site.html to override the width of all text fields, as well as specify a different width for the "title" field. {% block extrastyle %} <style type="text/css"> input.vTextField { width: 200px; } input#id_title { width: 100px; } </style> {% endblock %} Hope this helps. Bryan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---