pg_rails 7.0.8.pre.alpha.22 → 7.0.8.pre.alpha.24
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/pg_engine/app/views/pg_engine/base/index.html.slim +22 -20
- data/pg_rails/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1e89c3437921de83649c5499b972831fe8bc9f4dd9d14ff01555825d0513f74
|
4
|
+
data.tar.gz: 137eb256a8ee10a7692d9d41df0c29b9f955ab0cbfe18776e16087ba9baf0278
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6b28222612e06a6007bde69fb0c85603a0f02281e18756e8371eb20aaf972d746886abb8077525f7bdf0a287879fe03f5ff1d0ffd77f035e4badef4ccb517f3
|
7
|
+
data.tar.gz: 8dce15fca468b6cd28c1254ccb05c5267e832f926c46c4b7b2ad49e4b03a2eb25e5202a7f9d6e2a1796abf885fb981dfe5c00410be0b6e57d0b7c5604eb169bf
|
@@ -1,27 +1,29 @@
|
|
1
1
|
- content_for(:title, @clase_modelo.nombre_plural)
|
2
2
|
- content_for :actions do
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
3
|
+
- if @filtros.present?
|
4
|
+
button.btn.btn-sm.btn-outline-primary[type="button" data-bs-toggle="collapse"
|
5
|
+
data-bs-target="#filtros" aria-expanded="false"
|
6
|
+
aria-controls="filtros"]
|
7
|
+
span.bi.bi-funnel-fill
|
8
|
+
span.d-none.d-sm-inline Filtrar
|
9
|
+
.ms-1
|
9
10
|
= @clase_modelo.new.decorate.new_link
|
10
11
|
|
11
|
-
|
12
|
-
.
|
13
|
-
.
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
12
|
+
- if @filtros.present?
|
13
|
+
.collapse.border-bottom#filtros class="#{ 'show' if any_filter? }"
|
14
|
+
.d-flex.align-items-center.p-2
|
15
|
+
.px-2.d-none.d-sm-inline-block
|
16
|
+
span.bi.bi-funnel-fill
|
17
|
+
= form_tag nil, class: '', method: :get do
|
18
|
+
.row.g-1
|
19
|
+
= @filtros.filtros_html
|
20
|
+
.col-auto
|
21
|
+
= button_tag class: 'btn btn-sm btn-primary col-auto' do
|
22
|
+
span.bi.bi-search
|
23
|
+
.col-auto
|
24
|
+
= link_to namespaced_path(@clase_modelo, clean: true),
|
25
|
+
class: 'btn btn-sm btn-secondary col-auto' do
|
26
|
+
| Limpiar
|
25
27
|
|
26
28
|
div
|
27
29
|
- if @collection.any?
|
data/pg_rails/lib/version.rb
CHANGED