Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nk20
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BDE
nk20
Commits
10ffddaf
Commit
10ffddaf
authored
5 years ago
by
me5na7qbjqbrp
Browse files
Options
Downloads
Patches
Plain Diff
Bootstrap for conso page
parent
1bd94fc4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/base.html
+0
-3
0 additions, 3 deletions
templates/base.html
templates/note/conso_form.html
+112
-58
112 additions, 58 deletions
templates/note/conso_form.html
with
112 additions
and
61 deletions
templates/base.html
+
0
−
3
View file @
10ffddaf
...
...
@@ -75,9 +75,6 @@ SPDX-License-Identifier: GPL-3.0-or-later
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"#"
><i
class=
"fa fa-calendar"
></i>
{% trans 'Activities' %}
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"{% url 'note:template_list' %}"
><i
class=
"fa fa-coffee"
></i>
{% trans 'Button' %}
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"{% url 'note:transfer' %}"
><i
class=
"fa fa-exchange"
></i>
{% trans 'Transfer' %}
</a>
</li>
...
...
This diff is collapsed.
Click to expand it.
templates/note/conso_form.html
+
112
−
58
View file @
10ffddaf
...
...
@@ -6,75 +6,129 @@
{% block contenttitle %}{% endblock %}
{% block content %}
{# Regroup buttons under categories #}
{% regroup transaction_templates by category as categories %}
<form
method=
"post"
onsubmit=
"window.onbeforeunload=null"
>
{% csrf_token %}
<div
class=
"row"
>
<div
class=
"col-sm-5 mb-4"
>
{% if form.non_field_errors %}
<p
class=
"errornote"
>
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
</p>
{% endif %}
{% for field in form %}
<div
class=
"form-row{% if field.errors %} errors{% endif %}"
>
{{ field.errors }}
<div>
{{ field.label_tag }}
{% if field.is_readonly %}
<div
class=
"readonly"
>
{{ field.contents }}
</div>
{% else %}
{{ field }}
{% endif %}
{% if field.field.help_text %}
<div
class=
"help"
>
{{ field.field.help_text|safe }}
</div>
{% endif %}
<div
class=
"row mt-4"
>
<div
class=
"col-sm-5 col-md-4"
>
<div
class=
"row"
>
{# User details column #}
<div
class=
"col-xl-5"
>
<div
class=
"card border-success shadow mb-4"
>
<img
src=
"https://perso.crans.org/erdnaxe/site-crans/img/logo.svg"
alt=
""
class=
"img-fluid rounded mx-auto d-block"
>
<div
class=
"card-body text-center"
>
Paquito (aka. PAC) : -230 €
</div>
</div>
{% endfor %}
</div>
</div>
<div
class=
"col-sm-7"
>
<div
class=
"card text-center shadow"
>
{# Tabs for button categories #}
<div
class=
"card-header"
>
<ul
class=
"nav nav-tabs nav-fill card-header-tabs"
>
{% for category in categories %}
<li
class=
"nav-item"
>
<a
class=
"nav-link"
data-toggle=
"tab"
href=
"#{{ category.grouper|slugify }}"
>
{{ category.grouper }}
</a>
</li>
{% endfor %}
{# User selection column #}
<div
class=
"col-xl-7"
>
<div
class=
"card border-success shadow mb-4"
>
<div
class=
"card-header"
>
<p
class=
"card-text font-weight-bold"
>
Sélection des émitteurs
</p>
</div>
<ul
class=
"list-group list-group-flush"
>
<li
class=
"list-group-item py-1 d-flex justify-content-between align-items-center"
>
Cras justo odio
<span
class=
"badge badge-dark badge-pill"
>
14
</span>
</li>
<li
class=
"list-group-item py-1 d-flex justify-content-between align-items-center"
>
Dapibus ac facilisis in
<span
class=
"badge badge-dark badge-pill"
>
1
</span>
</li>
</ul>
<div
class=
"card-body"
>
TODO: reimplement select2 here in JS
</div>
</div>
</div>
</div>
</div>
{# Buttons column #}
<div
class=
"col-sm-7 col-md-8"
>
{# Show last used buttons #}
<div
class=
"card shadow mb-4"
>
<div
class=
"card-body text-nowrap"
style=
"overflow:auto hidden"
>
<p
class=
"card-text text-muted font-weight-light font-italic"
>
Les boutons les plus utilisés s'afficheront ici.
</p>
</div>
</div>
{# Regroup buttons under categories #}
{% regroup transaction_templates by template_type as template_types %}
{# Tabs content #}
<div
class=
"card-body"
>
<div
class=
"tab-content"
>
{% for category in categories %}
<div
class=
"tab-pane"
id=
"{{ category.grouper|slugify }}"
>
<div
class=
"d-inline-flex flex-wrap justify-content-center"
>
{% for button in category.list %}
<button
class=
"btn btn-outline-dark rounded-0 flex-fill"
name=
"button"
value=
"{{ button.name }}"
>
{{ button.name }} ({{ button.amount | pretty_money }})
</button>
{% endfor %}
</div>
<div
class=
"card border-primary text-center shadow mb-4"
>
{# Tabs for button categories #}
<div
class=
"card-header"
>
<ul
class=
"nav nav-tabs nav-fill card-header-tabs"
>
{% for template_type in template_types %}
<li
class=
"nav-item"
>
<a
class=
"nav-link font-weight-bold"
data-toggle=
"tab"
href=
"#{{ template_type.grouper|slugify }}"
>
{{ template_type.grouper }}
</a>
</li>
{% endfor %}
</ul>
</div>
{# Tabs content #}
<div
class=
"card-body"
>
<div
class=
"tab-content"
>
{% for template_type in template_types %}
<div
class=
"tab-pane"
id=
"{{ template_type.grouper|slugify }}"
>
<div
class=
"d-inline-flex flex-wrap justify-content-center"
>
{% for button in template_type.list %}
<button
class=
"btn btn-outline-dark rounded-0 flex-fill"
name=
"button"
value=
"{{ button.name }}"
>
{{ button.name }} ({{ button.amount | pretty_money }})
</button>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>
{# Mode switch #}
<div
class=
"card-footer border-primary"
>
<a
class=
"btn btn-sm btn-secondary float-left"
href=
"{% url 'note:template_list' %}"
>
<i
class=
"fa fa-edit"
></i>
Éditer
</a>
<div
class=
"btn-group btn-group-toggle float-right"
data-toggle=
"buttons"
>
<label
class=
"btn btn-sm btn-outline-primary active"
>
<input
type=
"radio"
name=
"options"
id=
"option1"
checked
>
Consomations simples
</label>
<label
class=
"btn btn-sm btn-outline-primary"
>
<input
type=
"radio"
name=
"options"
id=
"option2"
>
Consomations doubles
</label>
</div>
</div>
</div>
</div>
</form>
</div>
<div
class=
"card shadow mb-4"
>
<div
class=
"card-header"
>
<p
class=
"card-text font-weight-bold"
>
Historique des transactions récentes
</p>
</div>
{% render_table table %}
</div>
{% endblock %}
{% block extracss %}
<style>
.select2-container
{
max-width
:
100%
;
min-width
:
100%
;
}
</style>
{% endblock %}
{% block extrajavascript %}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment