This is my first use of flask-appbuilder, and the question seems to me quite basic. Sorry if it is trivial, but my research did not allow me to find useful information. Anyway.
I would like to allow the user to navigate through the data by following the foreign keys, simply by clicking on them to jump to the referenced element of another table.
Example: Two tables: Users and Departments with primary keys UserId and DepartementId. The User table has a foreign key DepartementId which references the Department table (intuitively: the department to which the user belongs). When displaying the list of users or one single user (Users/Show), I would like the foreign key DepartementId to be a clickable hyperlink bringing the user directly to the display of the department of the user.
I can't put any code example, just because I don't have the beginning of a track…
Any help is welcome. I’m sticked !