mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-02 11:52:27 +02:00
mode dashboard out of order app and give box same height
This commit is contained in:
parent
30d74e5dd9
commit
82bc55ff39
5 changed files with 10 additions and 4 deletions
|
@ -54,7 +54,7 @@ class IndexView(LoginRequiredMixin, generic.ListView):
|
||||||
|
|
||||||
class JoinGroupedOrderView(generic.FormView, generic.RedirectView, LoginRequiredMixin):
|
class JoinGroupedOrderView(generic.FormView, generic.RedirectView, LoginRequiredMixin):
|
||||||
form_class = JoinGroupedOrderForm
|
form_class = JoinGroupedOrderForm
|
||||||
template_name = "order/dashboard.html"
|
template_name = "dashboard.html"
|
||||||
|
|
||||||
def form_valid(self, form):
|
def form_valid(self, form):
|
||||||
return redirect(
|
return redirect(
|
||||||
|
|
|
@ -214,8 +214,7 @@ fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fields
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Bulma Base */
|
/* Bulma Base */ /*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
|
||||||
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
|
|
||||||
html,
|
html,
|
||||||
body,
|
body,
|
||||||
p,
|
p,
|
||||||
|
@ -10303,6 +10302,10 @@ main {
|
||||||
border-right: 1px solid #e9b049;
|
border-right: 1px solid #e9b049;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
|
|
|
@ -15,6 +15,9 @@ main
|
||||||
border-bottom: 2px solid $beige
|
border-bottom: 2px solid $beige
|
||||||
border-right: 1px solid $beige
|
border-right: 1px solid $beige
|
||||||
|
|
||||||
|
.box
|
||||||
|
height: 100%
|
||||||
|
|
||||||
.footer
|
.footer
|
||||||
padding: 0
|
padding: 0
|
||||||
font-size: 0.7rem
|
font-size: 0.7rem
|
||||||
|
|
|
@ -53,7 +53,7 @@ urlpatterns = [
|
||||||
),
|
),
|
||||||
path(
|
path(
|
||||||
"",
|
"",
|
||||||
JoinGroupedOrderView.as_view(template_name="order/dashboard.html"),
|
JoinGroupedOrderView.as_view(template_name="dashboard.html"),
|
||||||
name="dashboard",
|
name="dashboard",
|
||||||
),
|
),
|
||||||
path(
|
path(
|
||||||
|
|
Loading…
Reference in a new issue