User guide (in PDF) accessible in Trame web application #472
-
Hello, I am loading the user guide with the help of
Thank you very much! :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
While they are better option, using the LocalFileManager you could do the following html.A("User Manual", href= asset_manager.user_guide, download=True) A better option would be to create a trame module to serve your pdf over http so you could do server.enable_module(dict(serve=dict("docs", str(Path(__file__).parent.resolve())))
html.A("User Manual", href="docs/user_guide.pdf", download=True) |
Beta Was this translation helpful? Give feedback.
-
Keep in mind that you can list your app here if that makes sense. |
Beta Was this translation helpful? Give feedback.
While they are better option, using the LocalFileManager you could do the following
A better option would be to create a trame module to serve your pdf over http so you could do