Changeset - ff07405ff0e5
[Not reviewed]
Merge
0 38 0
Patrick Altman - 9 years ago 2015-09-08 19:56:38
paltman@gmail.com
Merge pull request #114 from uranusjr/timezone-field

Replace django-timezones w/ django-timezone-field
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
requirements/base.txt
Show inline comments
...
 
@@ -7,3 +7,3 @@ django-sitetree==1.2.1
 
django-taggit==0.12.2
 
django-timezones==0.2
 
django-timezone-field==1.2
 
django-user-accounts==1.0
symposion/conference/models.py
Show inline comments
...
 
@@ -5,3 +5,3 @@ from django.utils.encoding import python_2_unicode_compatible
 

	
 
from timezones.fields import TimeZoneField
 
from timezone_field import TimeZoneField
 

	
...
 
@@ -24,3 +24,3 @@ class Conference(models.Model):
 
    # timezone the conference is in
 
    timezone = TimeZoneField(_("timezone"), blank=True)
 
    timezone = TimeZoneField(blank=True, verbose_name=_("timezone"))
 

	
0 comments (0 inline, 0 general)