Login

Frontend admin date picker widget

Author:
t_rybik
Posted:
April 16, 2010
Language:
Python
Version:
1.1
Score:
1 (after 1 ratings)

This is just a AdminDateWidget with missing JSs added. Don't forget to call {{ from.media }} in template.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from django.conf import settings
from django.contrib.admin.widgets import AdminDateWidget

I18NJS_URL = getattr(settings, 'I18NJS_URL', "i18njs/")
class Date(AdminDateWidget):
    '''
    Wrapper for the AdminDateWidget with missing media. You also have to add:

        (r'^%s' % I18JS_URL, 'django.views.i18n.javascript_catalog')

    to your site's main urls.py.
    '''
    class Media:
        # JSs have to be included in right order, thus:
        extend = False
        js = ("/%s" % I18NJS_URL, settings.ADMIN_MEDIA_PREFIX + "js/core.js",) +\
            AdminDateWidget.Media.js

        # extract approriative content from below CSS if you prefer
        css = {
            'screen': (settings.ADMIN_MEDIA_PREFIX + 'css/forms.css',
                       settings.ADMIN_MEDIA_PREFIX + 'css/global.css',
                       settings.ADMIN_MEDIA_PREFIX + 'css/base.css',
                       ),
        }

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

muhdazwa (on December 20, 2010):

I like this snippet. Thank you :)

#

Please login first before commenting.