pg_rails 7.0.8.pre.alpha.22 → 7.0.8.pre.alpha.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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: 791fd0883c4eaa68bdcdac6f07a6fe6a9aa7d8a3766fb4f6e46d655bb20ff502
|
4
|
+
data.tar.gz: b95cb120a61526e67b647c7531eaf8b306edd9ef7dab778e6f90f33134547415
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cc9a7cb7e04cda3597faf07a4fdd22832bdf9cf4abb299f762eec83eb87338ee4e4b65b1381d5b75ace96787e8c71356ed27f9ada651d1553c6b1055fe62fdf
|
7
|
+
data.tar.gz: 41d07925fd7565e2ce348df8c747502c2cdf78540bfa6e672dfb2e1fb753885e1dbbff249106d1fea13218f69b587d6053dbbec29302fbeaa83823b946a369ee
|
@@ -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