ish_manager 0.1.8.341 → 0.1.8.343

Sign up to get free protection for your applications and to get access to all the features.
@@ -27,7 +27,7 @@
27
27
  %tr
28
28
  %td= check_box_tag 'lead_ids[]', lead.id
29
29
  %td= link_to lead.name, lead_path( lead )
30
- %td= lead.leadset&.name
30
+ %td= lead.leadset&.id
31
31
  %td= lead.email
32
32
  %td= lead.tag
33
33
  %td= lead.created_at.to_s[0..10]
@@ -2,41 +2,19 @@
2
2
  - url = leadset.persisted? ? leadset_path( leadset.id ) : leadsets_path
3
3
 
4
4
  = form_for leadset, :as => :leadset, :url => url do |f|
5
- .input-field
6
- = f.label :email
7
- = f.text_field :email
8
5
 
9
- .input-field
10
- = f.label :job_url
11
- = f.text_field :job_url
12
6
  .input-field
13
7
  = f.label :company_url
14
8
  = f.text_field :company_url
15
9
  .input-field
16
- = f.label :yelp_url
17
- = f.text_field :yelp_url
18
-
19
- .input-field
20
- = f.label :company
21
- = f.text_field :company
10
+ = f.label :name
11
+ = f.text_field :name
22
12
  .input-field
23
13
  = f.label :tag
24
14
  = f.text_field :tag
25
15
  .input-field
26
16
  = f.label :location
27
17
  = f.text_field :location
28
- .input-field
29
- = f.label :description
30
- = f.text_area :description
31
- .input-field
32
- = f.label :address
33
- = f.text_area :address
34
- .field
35
- = f.check_box :is_done
36
- = f.label :is_done
37
- .field
38
- = f.check_box :is_trash
39
- = f.label :is_trash
40
18
  .actions{ :style => "margin-top: 1em;" }
41
19
  = f.submit
42
20
 
@@ -10,7 +10,7 @@
10
10
  %thead
11
11
  %tr
12
12
  %th  
13
-
13
+ %th created at
14
14
  %th Name
15
15
  %th Tag
16
16
  %th.company-url Company Url
@@ -19,8 +19,8 @@
19
19
  - @leadsets.each do |leadset|
20
20
  %tr
21
21
  %td= check_box_tag leadset.id
22
-
22
+ %td= leadset.created_at.strftime("%Y-%m-%d %H:%M")
23
23
  %td= link_to leadset.name, leadset_path( leadset )
24
24
  %td= leadset.tag
25
- %td= link_to 'B', leadset.company_url if leadset.company_url.present?
25
+ %td= link_to leadset.company_url, leadset.company_url
26
26
  %td= leadset.location
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ish_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8.341
4
+ version: 0.1.8.343
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-26 00:00:00.000000000 Z
11
+ date: 2022-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -320,8 +320,6 @@ files:
320
320
  - app/views/ish_manager/application/_profile_pic.haml
321
321
  - app/views/ish_manager/application/_search.haml
322
322
  - app/views/ish_manager/application/home.haml
323
- - app/views/ish_manager/application/trash/_main_header.haml
324
- - app/views/ish_manager/application/trash/_main_header_manager.haml
325
323
  - app/views/ish_manager/application_mailer/shared_galleries.html.erb
326
324
  - app/views/ish_manager/application_mailer/welcome.html.erb
327
325
  - app/views/ish_manager/email_campaign_leads/show.haml
@@ -333,6 +331,7 @@ files:
333
331
  - app/views/ish_manager/email_templates/_form.haml
334
332
  - app/views/ish_manager/email_templates/_form_mini.haml
335
333
  - app/views/ish_manager/email_templates/_index.haml
334
+ - app/views/ish_manager/email_templates/_m20221201react.html.erb
336
335
  - app/views/ish_manager/email_templates/_marketing_react_1.html
337
336
  - app/views/ish_manager/email_templates/_marketing_ror_1.html
338
337
  - app/views/ish_manager/email_templates/_marketing_ror_2.html.erb
@@ -454,7 +453,6 @@ files:
454
453
  - app/views/ish_manager/videos/index.haml
455
454
  - app/views/ish_manager/videos/new.haml
456
455
  - app/views/ish_manager/videos/show.haml
457
- - app/views/layouts/ish_manager/README.txt
458
456
  - app/views/layouts/ish_manager/application.haml
459
457
  - config/routes.rb
460
458
  - lib/ish_manager.rb
@@ -1,15 +0,0 @@
1
-
2
- .main-header
3
- .container
4
- .row
5
- .col.s12
6
- %i.fa.fa-compress.collapse-expand#collapseHeader
7
- .content
8
- %ul.nav.nav-pills
9
- %li{ :class => params[:controller] == 'ish_manager/galleries' ? 'active' : '' }= link_to 'Galleries', galleries_path
10
- %li{ :class => params[:controller] == 'ish_manager/reports' ? 'active' : '' }= link_to 'Reports', reports_path
11
- %li{ :class => params[:controller] == 'ish_manager/videos' ? 'active' : '' }= link_to 'Videos', videos_path
12
- %li{ :class => params[:controller] == 'ish_manager/friends ' ? 'active' : '' }= link_to 'Friends', friends_path
13
- %ul.nav.nav-pills
14
- %hr
15
-
@@ -1,21 +0,0 @@
1
-
2
- .main-header
3
- .container
4
- .row
5
- .col.s12
6
- %i.fa.fa-compress.collapse-expand#collapseHeader
7
- .content
8
- -#
9
- %ul.nav.nav-pills
10
- %li{ :class => params[:controller] == 'ish_manager/galleries' ? 'active' : '' }= link_to 'Galleries', galleries_path
11
- %li{ :class => params[:controller] == 'ish_manager/reports' ? 'active' : '' }= link_to 'Reports', reports_path
12
- %li{ :class => params[:controller] == 'ish_manager/videos' ? 'active' : '' }= link_to 'Videos', videos_path
13
- %li{ :class => params[:controller] == 'ish_manager/friends ' ? 'active' : '' }= link_to 'Friends', friends_path
14
- %ul.nav.nav-pills
15
- %li{ :class => params[:controller] == 'ish_manager/maps' ? 'active' : '' }= link_to 'GameUi::Maps', maps_path
16
- %li{ :class => params[:controller] == 'ish_manager/cities' ? 'active' : '' }= link_to 'Cities', cities_path
17
- %li{ :class => params[:controller] == 'ish_manager/events' ? 'active' : '' }= link_to 'Events', events_path
18
- %li{ :class => params[:controller] == 'ish_manager/venues' ? 'active' : '' }= link_to 'Venues', venues_path
19
- %li{ :class => params[:controller] == 'ish_manager/tags' ? 'active' : '' }= link_to 'Tags', tags_path
20
- %hr
21
-
@@ -1,3 +0,0 @@
1
-
2
- The application2 and application layouts are the same. Let's converge.
3
-