similar to a hybrid of the random facts (but defined more simply) and the dice rolling (but not picking from dice), this allows for definition of "choice sets" (only in the admin for the moment) and then getting a random pull from that set (only in the web interface for the moment)
8 lines
133 B
Python
8 lines
133 B
Python
"""Manage choices models."""
|
|
|
|
from django.contrib import admin
|
|
|
|
from choices.models import ChoiceSet
|
|
|
|
admin.site.register(ChoiceSet)
|