-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from ChanTsune/develop
[release] 1.2.1
- Loading branch information
Showing
39 changed files
with
1,993 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from django.utils.version import get_version | ||
|
||
VERSION = (1, 2, 0, 'final', 0) | ||
VERSION = (1, 2, 1, 'final', 0) | ||
|
||
__version__ = get_version(VERSION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
from django.forms.widgets import Input | ||
from django.forms.widgets import Input, RadioSelect | ||
|
||
|
||
class ColorInput(Input): | ||
"""HTML <input type='color'>.""" | ||
|
||
input_type = 'color' | ||
template_name = 'django/forms/widgets/input.html' | ||
|
||
|
||
class StarRateSelect(RadioSelect): | ||
"""Star styled radio select.""" | ||
|
||
template_name = "boost/forms/widgets/star_radio.html" | ||
option_template_name = "boost/forms/widgets/star_radio_input.html" |
Oops, something went wrong.