BVNCodeTech / medsched

Self Host(able) medical reminder app, prescription manager and web scraper. Built with Python and Flask.
MIT License
6 stars 2 forks source link

Navbar reloads everytime #12

Open Pancham1603 opened 3 years ago

Pancham1603 commented 3 years ago

The dashboard navbar reloads everytime when you switch pages, ig only the page content should refresh

sortedcord commented 3 years ago

Yeah this was something that I was able to fix with Django, I made navbar into a static block and used that block in all the other pages. https://github.com/sortedcord/MathMaster/blob/master/templates/base.html#L84 Here I made a base html. So it leads to faster load times. I'm not sure if you can do this with Flask tho...

Pancham1603 commented 3 years ago

yes yes, that's possible in jinja, we create a base and in other files we just mention {% extends base.html %} in the other files