
With Django we have form which have many feature to faster development. I usually use Django Model Form, which get the meta data from a model and spit out a form ready to use and rendered to client in HTML form.
Now i need to get a choice field in django , but the choice field get from a foreign key, and need to filter it base on the username logged in to system.
So the purpose is to get a list of choice which only available for the specific...