django-radiogrid
With this you can create a radio grid field:
Installation
pip install -e git+https://github.com/Sinkler/django-radiogrid#egg=django-radiogrid
In your settings.py
INSTALLED_APPS = (
# ...
'radiogrid',
)
In your models.py
from radiogrid import RadioGridFormField
...
ROWS = (
(1, 'First'),
(2, 'Second'),
(3, 'Third'),
)
VALUES = (
('pyha', 'Pyha'),
('work', 'Work'),
('happy', 'Happy'),
('food', 'Food'),
)
class MyModel(models.Model):
.....
my_grid = RadioGridField(rows=ROWS, values=VALUES, require_all_fields=True)
Example project
You can run it as usual:
virtualenv venv . venv/bin/activate pip install django pip install -e . cd example ./manage.py migrate ./manage.py loaddata data ./manage.py runserver
0.0.1 (2015-07-24)
Initial version
Release files for django-radiogrid 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-radiogrid-0.0.1.tar.gz | 6.0 kB | Details |
Release files / django-radiogrid-0.0.1.tar.gz
| Download URL | django-radiogrid-0.0.1.tar.gz |
|---|---|
| Size | 6.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
173667c9f08d01c589cdcdccfd8bab1d3a017d5cbfcd3cb572d080fdf61f6ac8
|
|
BLAKE2b-256 checksum How to use checksums |
495ab5234752e7285ec7e9dd689de2767527f0cacf73a21eb1d7de287b8c1199
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |