vote up 18 vote down star
22

How can I use the nifty JavaScript date and time widgets that the default admin uses with my custom view?

I have looked through http://www.djangoproject.com/documentation/forms/, and it brefly mentions django.contrib.admin.widgets, but I don't know how to use it?

Here is my template that I want it applied on.

    <form action="." method="POST">
        <table>
            {% for f in form %}
               <tr> <td> {{ f.name }}</td> <td>{{ f }}</td> </tr>
            {% endfor %}
        </table>
        <input type="submit" name="submit" value="Add Product">
    </form>

Also, I think it should be noted that I haven't really written a view up myself for this form, I am using a generic view. Here is the entry from the url.py:

    (r'^admin/products/add/$', create_object, {'model': Product, 'post_save_redirect': ''}),

And I am relevantly new to the whole Django/MVC/MTV thing, so please go easy...

flag

11 Answers

vote up 31 vote down check

What you have to do to make this work:

  1. Define your own ModelForm subclass for your model (best to put it in forms.py in your app), and tell it to use the AdminDateWidget / AdminTimeWidget / AdminSplitDateTime (replace 'mydate' etc with the proper field names from your model):

    from django import forms
    from my_app.models import Product
    from django.contrib.admin import widgets                                       
    
    
    class ProductForm(forms.ModelForm):
        class Meta:
            model = Product
        def __init__(self, *args, **kwargs):
            super(ProductForm, self).__init__(*args, **kwargs)
            self.fields['mydate'].widget = widgets.AdminDateWidget()
            self.fields['mytime'].widget = widgets.AdminTimeWidget()
            self.fields['mydatetime'].widget = widgets.AdminSplitDateTime()
    

    monkut notes that there's a less hackish way to do this below.

    from django import forms
    from my_app.models import Product
    from django.contrib.admin import widgets
    
    
    class ProductForm(forms.ModelForm):
        mydate = forms.DateField(widget=widgets.AdminDateWidget)
        mytime = forms.TimeField(widget=widgets.AdminTimeWidget)
        mydatetime = forms.DateTimeField(widget=widgets.AdminSplitDateTime)
        class Meta:
            model = Product
    
  2. Change your URLconf to pass 'form_class': ProductForm instead of 'model': Product to the generic create_object view (that'll mean "from my_app.forms import ProductForm" instead of "from my_app.models import Product", of course).

  3. In the head of your template, include {{ form.media }} to output the links to the Javascript files.

  4. And the hacky part: the admin date/time widgets presume that the i18n JS stuff has been loaded, and also require core.js, but don't provide either one automatically. So in your template above {{ form.media }} you'll need:

    <script type="text/javascript" src="/my_admin/jsi18n/"></script>
    <script type="text/javascript" src="/media/admin/js/core.js"></script>
    

    Alex. S. notes that you may also wish to use the following admin CSS below.

    <link rel="stylesheet" type="text/css" href="/media/admin/css/forms.css"/>
    <link rel="stylesheet" type="text/css" href="/media/admin/css/base.css"/>
    <link rel="stylesheet" type="text/css" href="/media/admin/css/global.css"/>
    <link rel="stylesheet" type="text/css" href="/media/admin/css/widgets.css"/>
    

This implies that Django's admin media (ADMIN_MEDIA_PREFIX) is at /media/admin/ - you can change that for your setup. Ideally you'd use a context processor to pass this values to your template instead of hardcoding it, but that's beyond the scope of this question.

This also requires that the URL /my_admin/jsi18n/ be manually wired up to the django.views.i18n.javascript_catalog view (or null_javascript_catalog if you aren't using I18N). You have to do this yourself instead of going through the admin application so it's accessible regardless of whether you're logged into the admin (thanks Jeremy for pointing this out). Sample code for your URLconf:

(r'^my_admin/jsi18n', 'django.views.i18n.javascript_catalog'),
link|flag
Most helpful post online for doing this but having finally got date/time widget appear and populating field am now going to take it out because despite having required=False in the form field it now shows the message "Enter a valid date/time." for my not required field if I leave it blank. Back to jquery for me. – phoebebright Oct 1 at 9:46
vote up 0 vote down

Updated solution and workaround for SplitDateTime with required=False:

forms.py

from django import forms

class SplitDateTimeJSField(forms.SplitDateTimeField):
    def __init__(self, *args, **kwargs):
        super(SplitDateTimeJSField, self).__init__(*args, **kwargs)
        self.widget.widgets[0].attrs = {'class': 'vDateField'}
        self.widget.widgets[1].attrs = {'class': 'vTimeField'}  


class AnyFormOrModelForm(forms.Form):
    date = forms.DateField(widget=forms.TextInput(attrs={'class':'vDateField'}))
    time = forms.TimeField(widget=forms.TextInput(attrs={'class':'vTimeField'}))
    timestamp = SplitDateTimeJSField(required=False,)

form.html

<script type="text/javascript" src="/admin/jsi18n/"></script>
<script type="text/javascript" src="/admin_media/js/core.js"></script>
<script type="text/javascript" src="/admin_media/js/calendar.js"></script>
<script type="text/javascript" src="/admin_media/js/admin/DateTimeShortcuts.js"></script>

urls.py

(r'^admin/jsi18n/', 'django.views.i18n.javascript_catalog'),
link|flag
I have also filled a ticket to fix the SplitDateTime widgets code.djangoproject.com/ticket/12303 – Samuel Adam Dec 2 at 15:07
vote up 1 vote down

I find myself referencing this post a lot, and found that the documentation defines a slightly less hacky way to override default widgets.

(No need to override the ModelForm's __init__ method)

However, you still need to wire your js and css appropriatly as Carl mentions.

forms.py

from django import forms
from my_app.models import Product
from django.contrib.admin import widgets                                       


class ProductForm(forms.ModelForm):
    mydate = forms.DateField(widget=widgets.AdminDateWidget)
    mytime = forms.TimeField(widget=widgets.AdminTimeWidget)
    mydatetime = forms.DateTimeField(widget=widgets.AdminSplitDateTime)

    class Meta:
        model = Product

Reference Field Types to find the default form fields.

link|flag
vote up 1 vote down

No working in version 1.1 of Django SVN trunk, any help.

link|flag
vote up 4 vote down

Complementing the answer by Carl Meyer, I would like to comment that you need to put that header in some valid block (inside the header) within your template.

{% block extra_head %}

<link rel="stylesheet" type="text/css" href="/media/admin/css/forms.css"/>
<link rel="stylesheet" type="text/css" href="/media/admin/css/base.css"/>
<link rel="stylesheet" type="text/css" href="/media/admin/css/global.css"/>
<link rel="stylesheet" type="text/css" href="/media/admin/css/widgets.css"/>

<script type="text/javascript" src="/admin/jsi18n/"></script>
<script type="text/javascript" src="/media/admin/js/core.js"></script>
<script type="text/javascript" src="/media/admin/js/admin/RelatedObjectLookups.js"></script>

{{ form.media }}

{% endblock %}
link|flag
I also found this link useful: groups.google.ca/group/django-users/… – Alex. S. Apr 5 at 20:03
vote up 6 vote down

Yep, I ended up overriding the /admin/jsi18n/ url.

Here's what I added in my urls.py. Make sure it's above the /admin/ url

    (r'^admin/jsi18n', i18n_javascript),

And here is the i18n_javascript function I created.

from django.contrib import admin
def i18n_javascript(request):
  return admin.site.i18n_javascript(request)
link|flag
Oh, very good point. I'll add this to my answer above so it's easier for people to find before they have trouble. – Carl Meyer Jan 10 '09 at 23:03
vote up 0 vote down

Thanks for the hacky part. Adding the jsi18n and core.js scripts helped me get the calendar date widget yesterday. However, today it was not working, even though I hadn't modified any code. After about an hour, I finally figured out that I was logged in with admin privileges yesterday and not today.

So, my question is, how can I link the /admin/jsi18n/ without needing to be logged in as an admin? Currently, it is linking in the admin login page.

I guess I am going to have to override the /admin/jsi18n/ url to something, but I'm not sure what.

link|flag
The last line in Carl's reply above shows how to get that working: (r'^my_admin/jsi18n', 'django.views.i18n.javascript_catalog'), That makes the javascript files from admin be available from outside. – Emil Stenström Aug 9 at 15:14
vote up 0 vote down

Good help!

BUT: the link to /media/admin/js/core.js does not work! Changing to /media/js/core.js helped me very well.

Could you please change it in your post?!

link|flag
As I explained in my answer, the correct URL depends on your Django settings (for ADMIN_MEDIA_URL in this case), so I can't change my post to anything that will work reliably for everyone. – Carl Meyer Jan 10 '09 at 23:02
vote up 0 vote down

You missed step 4, you need to add the javascript files.

link|flag
vote up 0 vote down

Can I use these widgets in my app (not admin)?

I tried this, but it's not working, I get a text input:

from ventas.models import *
from django.forms import ModelForm

from django.contrib.admin.widgets import AdminDateWidget, AdminSplitDateTime

class AvisoPublicitarioForm(ModelForm):
    fecha = forms.DateField(label=u"Fecha del aviso", input_formats=['%d-%m-%Y'], widget=AdminDateWidget())

    class Meta:
        model = AvisoPublicitario

Any clue?

Cecilia

link|flag
vote up 5 vote down

As the solution is hackish, I think using your own date/time widget with some JavaScript is more feasible.

link|flag
2  
I agree. I tried doing this a few months ago with my django project. I eventually gave up and just added my own with jQueryUI. Took all of 10 minutes to get it working. – nbv4 Jun 15 at 1:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.