You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
425 B
12 lines
425 B
from minibase.models import Countries
|
|
|
|
# Retunrs the query of all awailable Country names on the table named Countries
|
|
# Note that the formating is done during the SQLAlchemy Table declaration.
|
|
# Important note This table is ImporteD externally from a modifier SQL version of
|
|
# Github : https://github.com/dr5hn/countries-states-cities-database
|
|
def country_choices():
|
|
choices = Countries.query.all()
|
|
return choices
|
|
|
|
|