web_AI-5/django/didgeridoo/currencies/forms.py

8 lines
198 B
Python

from django import forms
from currencies.models import ExchangeRate_name
class CurrencyForm(forms.Form):
currencies = forms.ModelChoiceField(
queryset=ExchangeRate_name.objects.all())