mode dashboard out of order app and give box same height

This commit is contained in:
Laetitia Getti 2023-08-16 11:28:30 +02:00 committed by Laetitia Getti
parent 30d74e5dd9
commit 82bc55ff39
5 changed files with 10 additions and 4 deletions

View file

@ -54,7 +54,7 @@ class IndexView(LoginRequiredMixin, generic.ListView):
class JoinGroupedOrderView(generic.FormView, generic.RedirectView, LoginRequiredMixin):
form_class = JoinGroupedOrderForm
template_name = "order/dashboard.html"
template_name = "dashboard.html"
def form_valid(self, form):
return redirect(

View file

@ -214,8 +214,7 @@ fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fields
padding: 0;
}
/* Bulma Base */
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
/* Bulma Base */ /*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
@ -10303,6 +10302,10 @@ main {
border-right: 1px solid #e9b049;
}
.box {
height: 100%;
}
.footer {
padding: 0;
font-size: 0.7rem;

View file

@ -15,6 +15,9 @@ main
border-bottom: 2px solid $beige
border-right: 1px solid $beige
.box
height: 100%
.footer
padding: 0
font-size: 0.7rem

View file

@ -53,7 +53,7 @@ urlpatterns = [
),
path(
"",
JoinGroupedOrderView.as_view(template_name="order/dashboard.html"),
JoinGroupedOrderView.as_view(template_name="dashboard.html"),
name="dashboard",
),
path(