wco_email 0.1.1.41 → 0.1.1.42
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 16bd727a333da209b9d653313bfac3c6b112ca87c0a03f514dc6c7beeba0c767
|
|
4
|
+
data.tar.gz: 05bd0bf61431eab3448adcb2c514f54017d9b5a29067bbd239c00651e7ab420c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95e46edb2a134e7646ab381d1120ea14cb3c11bf87af4eea11d235c8901e318cdfc98c7c675469a5139e8e30017072976771fd55380233caaae99c68884dca2f
|
|
7
|
+
data.tar.gz: a9f82e64f99c55c13b0501b0027bcfd33eeb619c932fbcab7078c030fbf25920f5ac957f74a3ebeaba30349bb5f8fed4f33dbe1d206588248e2fbf5f6d196bb4
|
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
.conversations--search.Card
|
|
4
4
|
.inline-block
|
|
5
|
-
= form_tag
|
|
6
|
-
%
|
|
5
|
+
= form_tag conversations_path, method: :get do
|
|
6
|
+
%b Search
|
|
7
|
+
%label from_email
|
|
7
8
|
= text_field_tag :from_email, params[:from_email]
|
|
8
|
-
-# = submit_tag '>'
|
|
9
|
-
-# .inline-block
|
|
10
|
-
-# = form_tag email_conversations_path do
|
|
11
9
|
%label by subject
|
|
12
10
|
= text_field_tag :subject, params[:subject]
|
|
13
11
|
= submit_tag '>'
|
|
@@ -3,13 +3,14 @@
|
|
|
3
3
|
= render 'wco_email/sidebar'
|
|
4
4
|
|
|
5
5
|
.conversations-index
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
.header
|
|
7
|
+
%h5.title
|
|
8
|
+
- if @tag
|
|
9
|
+
Tag `#{@tag}`
|
|
10
|
+
- if @tag_not
|
|
11
|
+
Tag-not `#{@tag_not}`
|
|
12
|
+
(#{@conversations.length})
|
|
13
|
+
= render '/wco_email/conversations/search'
|
|
13
14
|
= render '/wco_email/conversations/actions'
|
|
14
15
|
|
|
15
16
|
= render '/wco/paginate', resource: @conversations, param_name: :conv_page
|