web_AI-5/django/didgeridoo/currencies/forms.py
2018-01-28 20:24:35 +01:00

9 lines
232 B
Python

from django import forms
from currencies.models import ExchangeRate_name
class CurrenciesForm(forms.Form):
currencies = forms.ModelChoiceField(
queryset=ExchangeRate_name.objects.all(),
required=False)