mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Fixed #17864 -- Added Hong Kong localflavor. Thanks to mrkschan and Adrien Lemaire.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17886 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
11
tests/regressiontests/localflavor/hk/forms.py
Normal file
11
tests/regressiontests/localflavor/hk/forms.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
from django.forms import ModelForm
|
||||
|
||||
from .models import HKPlace
|
||||
|
||||
|
||||
class HKPlaceForm(ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = HKPlace
|
||||
Reference in New Issue
Block a user