You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Later, when the new view is launched, we remove the flags, and we're good to go.
So to complete this ticket:
Create new_base.html as a clone of base.html, but using tailwind and components. As an MVP, it should just have blank spaces for the header, navbar, and footer.
Apply new_base.html to /components as an MVP.
The text was updated successfully, but these errors were encountered:
I think all of our templates inherit from base.html with a tag like:
We can't get very far on the redesign until base.html is replaced with a new template that uses tailwind and components.
I think what we can do to make this transition is to add a waffle to all of the new pages.
Ideally, we could do something like:
Unfortunately, that won't work because the
extends
tag has to go first, so what we need to do instead is move it to the view with something like:And then in your template, you can do:
From here: https://stackoverflow.com/a/7817990/64911
Later, when the new view is launched, we remove the flags, and we're good to go.
So to complete this ticket:
new_base.html
as a clone of base.html, but using tailwind and components. As an MVP, it should just have blank spaces for the header, navbar, and footer.new_base.html
to/components
as an MVP.The text was updated successfully, but these errors were encountered: