-
Beta Was this translation helpful? Give feedback.
Answered by
jowilf
Oct 9, 2024
Replies: 1 comment 1 reply
-
You can create a base view for all your views and override the title method something like class MyModelBaseView (sqla.ModelView):
def title(self, request):
return f"welcome {request.state.user.name}" |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ps96068
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can create a base view for all your views and override the title method
something like