mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-02 03:42:26 +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):
|
||||
form_class = JoinGroupedOrderForm
|
||||
template_name = "order/dashboard.html"
|
||||
template_name = "dashboard.html"
|
||||
|
||||
def form_valid(self, form):
|
||||
return redirect(
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -53,7 +53,7 @@ urlpatterns = [
|
|||
),
|
||||
path(
|
||||
"",
|
||||
JoinGroupedOrderView.as_view(template_name="order/dashboard.html"),
|
||||
JoinGroupedOrderView.as_view(template_name="dashboard.html"),
|
||||
name="dashboard",
|
||||
),
|
||||
path(
|
||||
|
|
Loading…
Reference in a new issue