phcdevworks_real_estate 5.1.0 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +1 -1
  3. data/README.md +1 -0
  4. data/app/assets/config/phcdevworks_real_estate_manifest.js +2 -3
  5. data/app/controllers/phcdevworks_real_estate/application_controller.rb +13 -13
  6. data/app/controllers/phcdevworks_real_estate/property/features_controller.rb +82 -82
  7. data/app/controllers/phcdevworks_real_estate/property/listings_controller.rb +82 -82
  8. data/app/helpers/phcdevworks_real_estate/application_helper.rb +4 -4
  9. data/app/helpers/phcdevworks_real_estate/property/features_helper.rb +4 -4
  10. data/app/helpers/phcdevworks_real_estate/property/listings_helper.rb +4 -4
  11. data/app/jobs/phcdevworks_real_estate/application_job.rb +4 -4
  12. data/app/mailers/phcdevworks_real_estate/application_mailer.rb +6 -6
  13. data/app/models/phcdevworks_real_estate/application_record.rb +5 -5
  14. data/app/models/phcdevworks_real_estate/property/feature.rb +22 -22
  15. data/app/models/phcdevworks_real_estate/property/listing.rb +35 -35
  16. data/app/models/phcdevworks_real_estate/property.rb +7 -7
  17. data/app/views/layouts/phcdevworks_real_estate/application.html.erb +58 -51
  18. data/app/views/layouts/phcdevworks_real_estate/components/backend/footer/_footer.html.erb +10 -9
  19. data/app/views/layouts/phcdevworks_real_estate/components/backend/navigation/_top_menu.html.erb +26 -25
  20. data/app/views/layouts/phcdevworks_real_estate/components/backend/sidebars/_side_menu.html.erb +491 -287
  21. data/app/views/phcdevworks_real_estate/property/features/_form.html.erb +22 -22
  22. data/app/views/phcdevworks_real_estate/property/features/edit.html.erb +41 -49
  23. data/app/views/phcdevworks_real_estate/property/features/index.html.erb +74 -82
  24. data/app/views/phcdevworks_real_estate/property/features/new.html.erb +41 -49
  25. data/app/views/phcdevworks_real_estate/property/features/show.html.erb +64 -64
  26. data/app/views/phcdevworks_real_estate/property/listings/_form.html.erb +113 -113
  27. data/app/views/phcdevworks_real_estate/property/listings/edit.html.erb +41 -49
  28. data/app/views/phcdevworks_real_estate/property/listings/index.html.erb +82 -90
  29. data/app/views/phcdevworks_real_estate/property/listings/new.html.erb +41 -49
  30. data/app/views/phcdevworks_real_estate/property/listings/show.html.erb +50 -50
  31. data/config/routes.rb +15 -20
  32. data/config/spring.rb +1 -1
  33. data/db/migrate/20190824010811_create_phcdevworks_real_estate_property_listings.rb +36 -36
  34. data/db/migrate/20190824011000_create_phcdevworks_real_estate_property_features.rb +17 -17
  35. data/db/migrate/20191024232111_create_phcdevworks_real_estate_property_features_listings.rb +10 -10
  36. data/lib/phcdevworks_real_estate/engine.rb +45 -46
  37. data/lib/phcdevworks_real_estate/version.rb +3 -3
  38. metadata +36 -82
  39. data/app/assets/stylesheets/phcdevworks_real_estate/application.scss +0 -0
  40. data/app/assets/stylesheets/phcdevworks_real_estate/property/features.scss +0 -0
  41. data/app/assets/stylesheets/phcdevworks_real_estate/property/listings.scss +0 -0
@@ -1,22 +1,22 @@
1
- <!-- Form - Property - Features -->
2
- <%= form_with(model: property_feature, local: true) do |phc_pro_property_feature| %>
3
-
4
- <!-- PHCNotifi Render Validation -->
5
- <%= render "phcdevworks_notifications/bootstrap/validations", :object => @property_feature %>
6
- <!-- PHCNotifi Render Validation -->
7
-
8
- <!-- Form Input Fields -->
9
- <div class="form-group">
10
- <%= phc_pro_property_feature.label :property_feature_name, "Feature Name" %>
11
- <%= phc_pro_property_feature.text_field :property_feature_name, placeholder: "Feature Name", class: "form-control" %>
12
- </div>
13
- <!-- Form Input Fields -->
14
-
15
- <!-- Form Submition Button -->
16
- <div class="actions">
17
- <%= phc_pro_property_feature.submit class: "btn btn-primary" %>
18
- </div>
19
- <!-- For Submition Button -->
20
-
21
- <% end %>
22
- <!-- Form - Property - Features -->
1
+ <!-- -PHCDEV- Form - Property - Features -->
2
+ <%= form_with(model: property_feature, local: true) do |phc_pro_property_feature| %>
3
+
4
+ <!-- -PHCDEV- Form Validation -->
5
+ <%= render "phcdevworks_notifications/bootstrap/validations", :object => @property_feature %>
6
+ <!-- -PHCDEV- Form Validation -->
7
+
8
+ <!-- -PHCDEV- Form Input Fields -->
9
+ <div class="mb-3">
10
+ <%= phc_pro_property_feature.label :property_feature_name, "Feature Name", class: "form-label" %>
11
+ <%= phc_pro_property_feature.text_field :property_feature_name, placeholder: "Feature Name", class: "form-control" %>
12
+ </div>
13
+ <!-- -PHCDEV- Form Input Fields -->
14
+
15
+ <!-- -PHCDEV- Form Submition Button -->
16
+ <div class="actions">
17
+ <%= phc_pro_property_feature.submit class: "btn btn-primary" %>
18
+ </div>
19
+ <!-- -PHCDEV- For Submition Button -->
20
+
21
+ <% end %>
22
+ <!-- -PHCDEV- Form - Property - Features -->
@@ -1,49 +1,41 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "Property Listing Features" %>
3
- <% phc_title_tagline "Edit Listing Features" %>
4
- <% phc_breadcrumb_one link_to "Property" %>
5
- <% phc_breadcrumb_two link_to "Features" %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
- </ol>
15
- <!-- Page Bradcrumbs -->
16
-
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
20
-
21
- <!-- Page Content -->
22
- <div class="row">
23
- <div class="col-lg-12">
24
-
25
- <!-- Panel -->
26
- <div class="panel panel-inverse">
27
-
28
- <!-- Panel - Heading -->
29
- <div class="panel-heading">
30
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
31
- </div>
32
- <!-- Panel - Heading -->
33
-
34
- <!-- Panel - Body -->
35
- <div class="panel-body">
36
-
37
- <!-- Edit Form -->
38
- <%= render "form", property_feature: @property_feature %>
39
- <!-- Edit Form -->
40
-
41
- </div>
42
- <!-- Panel - Body -->
43
-
44
- </div>
45
- <!-- Panel -->
46
-
47
- </div>
48
- </div>
49
- <!-- Page Content -->
1
+ <!-- -PHCDEV- Title Variables -->
2
+ <% phc_title "Property Listing Features" %>
3
+ <% phc_title_tagline "Edit Listing Features" %>
4
+ <% phc_breadcrumb_one link_to "Property" %>
5
+ <% phc_breadcrumb_two link_to "Features" %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- -PHCDEV- Title Variables -->
8
+
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
+ </ol>
15
+ <!-- -PHCDEV- Bradcrumbs -->
16
+
17
+ <!-- -PHCDEV- Header -->
18
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
+ <!-- -PHCDEV- Header -->
20
+
21
+ <!-- -PHCDEV- Panel -->
22
+ <div class="panel panel-inverse">
23
+
24
+ <!-- -PHCDEV- Panel - Heading -->
25
+ <div class="panel-heading">
26
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
27
+ </div>
28
+ <!-- -PHCDEV- Panel - Heading -->
29
+
30
+ <!-- -PHCDEV- Panel - Body -->
31
+ <div class="panel-body">
32
+
33
+ <!-- -PHCDEV- Edit Form -->
34
+ <%= render "form", property_feature: @property_feature %>
35
+ <!-- -PHCDEV- Edit Form -->
36
+
37
+ </div>
38
+ <!-- -PHCDEV- Panel - Body -->
39
+
40
+ </div>
41
+ <!-- -PHCDEV- Panel -->
@@ -1,82 +1,74 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "Admin - Property Listing Features" %>
3
- <% phc_title_tagline "Listing Features" %>
4
- <% phc_breadcrumb_one link_to "Property" %>
5
- <% phc_breadcrumb_two link_to "Features" %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
- </ol>
15
- <!-- Page Bradcrumbs -->
16
-
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
20
-
21
- <!-- Page Content -->
22
- <div class="row">
23
- <div class="col-lg-12">
24
-
25
- <!-- Panel -->
26
- <div class="panel panel-inverse">
27
-
28
- <!-- Panel - Heading -->
29
- <div class="panel-heading">
30
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
31
- </div>
32
- <!-- Panel - Heading -->
33
-
34
- <!-- Panel - Body -->
35
- <div class="panel-body">
36
-
37
- <!-- Index - Table -->
38
- <div class="table-responsive">
39
- <table class="table table-striped table-bordered">
40
-
41
- <thead>
42
- <tr>
43
- <th>Feature Name</th>
44
- <th></th>
45
- </tr>
46
- </thead>
47
-
48
- <tbody>
49
- <% @property_features.each do |property_feature| %>
50
- <tr>
51
- <td class="highlight"><%= link_to property_feature.property_feature_name, property_feature %></td>
52
- <td>
53
- <div class="btn-group d-flex" role="group" aria-label="Property Listings">
54
- <%= link_to "Feature Details", property_feature, class: "btn btn-primary btn-xs" %>
55
- <%= link_to "Update Feature", edit_property_feature_path(property_feature), class: "btn btn-primary btn-xs" %>
56
- <%= link_to "Remove Feature", property_feature, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: "Are you sure?" } %>
57
- </div>
58
- </td>
59
- </tr>
60
- <% end %>
61
- </tbody>
62
-
63
- </table>
64
- </div>
65
- <!-- Index - Table -->
66
-
67
- <!-- New Button -->
68
- <%= link_to phcdevworks_real_estate.new_property_feature_path, class: "btn btn-primary" do %>
69
- <i class="fad fa-plus-circle"></i>
70
- <%= "Add a New Feature" %>
71
- <% end %>
72
- <!-- New Button -->
73
-
74
- </div>
75
- <!-- Panel - Body -->
76
-
77
- </div>
78
- <!-- Panel -->
79
-
80
- </div>
81
- </div>
82
- <!-- Page Content -->
1
+ <!-- -PHCDEV- Title Variables -->
2
+ <% phc_title "Admin - Property Listing Features" %>
3
+ <% phc_title_tagline "Listing Features" %>
4
+ <% phc_breadcrumb_one link_to "Property" %>
5
+ <% phc_breadcrumb_two link_to "Features" %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- -PHCDEV- Title Variables -->
8
+
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
+ </ol>
15
+ <!-- -PHCDEV- Bradcrumbs -->
16
+
17
+ <!-- -PHCDEV- Header -->
18
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
+ <!-- -PHCDEV- Header -->
20
+
21
+ <!-- -PHCDEV- Panel -->
22
+ <div class="panel panel-inverse">
23
+
24
+ <!-- -PHCDEV- Panel - Heading -->
25
+ <div class="panel-heading">
26
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
27
+ </div>
28
+ <!-- -PHCDEV- Panel - Heading -->
29
+
30
+ <!-- -PHCDEV- Panel - Body -->
31
+ <div class="panel-body">
32
+
33
+ <!-- -PHCDEV- Index - Table -->
34
+ <div class="table-responsive">
35
+ <table class="table table-striped table-bordered">
36
+
37
+ <thead>
38
+ <tr>
39
+ <th>Feature Name</th>
40
+ <th></th>
41
+ </tr>
42
+ </thead>
43
+
44
+ <tbody>
45
+ <% @property_features.each do |property_feature| %>
46
+ <tr>
47
+ <td class="highlight"><%= link_to property_feature.property_feature_name, property_feature %></td>
48
+ <td>
49
+ <div class="btn-group d-flex" role="group" aria-label="Property Listings">
50
+ <%= link_to "Feature Details", property_feature, class: "btn btn-primary btn-xs" %>
51
+ <%= link_to "Update Feature", edit_property_feature_path(property_feature), class: "btn btn-primary btn-xs" %>
52
+ <%= link_to "Remove Feature", property_feature, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: "Are you sure?" } %>
53
+ </div>
54
+ </td>
55
+ </tr>
56
+ <% end %>
57
+ </tbody>
58
+
59
+ </table>
60
+ </div>
61
+ <!-- -PHCDEV- Index - Table -->
62
+
63
+ <!-- -PHCDEV- New Button -->
64
+ <%= link_to phcdevworks_real_estate.new_property_feature_path, class: "btn btn-primary" do %>
65
+ <i class="fad fa-plus-circle"></i>
66
+ <%= "Add a New Feature" %>
67
+ <% end %>
68
+ <!-- -PHCDEV- New Button -->
69
+
70
+ </div>
71
+ <!-- -PHCDEV- Panel - Body -->
72
+
73
+ </div>
74
+ <!-- -PHCDEV- Panel -->
@@ -1,49 +1,41 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "Property Listing Manager" %>
3
- <% phc_title_tagline "New Property Listing" %>
4
- <% phc_breadcrumb_one link_to "Property" %>
5
- <% phc_breadcrumb_two link_to "Listings" %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
- </ol>
15
- <!-- Page Bradcrumbs -->
16
-
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
20
-
21
- <!-- Page Content -->
22
- <div class="row">
23
- <div class="col-lg-12">
24
-
25
- <!-- Panel -->
26
- <div class="panel panel-inverse">
27
-
28
- <!-- Panel - Heading -->
29
- <div class="panel-heading">
30
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
31
- </div>
32
- <!-- Panel - Heading -->
33
-
34
- <!-- Panel - Body -->
35
- <div class="panel-body">
36
-
37
- <!-- New Form -->
38
- <%= render "form", property_feature: @property_feature %>
39
- <!-- New Form -->
40
-
41
- </div>
42
- <!-- Panel - Body -->
43
-
44
- </div>
45
- <!-- Panel -->
46
-
47
- </div>
48
- </div>
49
- <!-- Page Content -->
1
+ <!-- -PHCDEV- Title Variables -->
2
+ <% phc_title "Property Listing Manager" %>
3
+ <% phc_title_tagline "New Property Listing" %>
4
+ <% phc_breadcrumb_one link_to "Property" %>
5
+ <% phc_breadcrumb_two link_to "Listings" %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- -PHCDEV- Title Variables -->
8
+
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
+ </ol>
15
+ <!-- -PHCDEV- Bradcrumbs -->
16
+
17
+ <!-- -PHCDEV- Header -->
18
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
+ <!-- -PHCDEV- Header -->
20
+
21
+ <!-- -PHCDEV- Panel -->
22
+ <div class="panel panel-inverse">
23
+
24
+ <!-- -PHCDEV- Panel - Heading -->
25
+ <div class="panel-heading">
26
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
27
+ </div>
28
+ <!-- -PHCDEV- Panel - Heading -->
29
+
30
+ <!-- -PHCDEV- Panel - Body -->
31
+ <div class="panel-body">
32
+
33
+ <!-- -PHCDEV- New Form -->
34
+ <%= render "form", property_feature: @property_feature %>
35
+ <!-- -PHCDEV- New Form -->
36
+
37
+ </div>
38
+ <!-- -PHCDEV- Panel - Body -->
39
+
40
+ </div>
41
+ <!-- -PHCDEV- Panel -->
@@ -1,64 +1,64 @@
1
- <!-- Title System -->
2
- <% phc_title "Property Features Manager" %>
3
- <% phc_title_tagline "Property Features Details" %>
4
- <% phc_breadcrumb_one link_to "Property" %>
5
- <% phc_breadcrumb_two link_to "Features" %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- Title System -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
13
- </ol>
14
- <!-- Page Bradcrumbs -->
15
-
16
- <!-- Page Header -->
17
- <h1 class="page-header"><%= yield(:phc_title) %></h1>
18
- <!-- Page Header -->
19
-
20
- <!-- Page Content -->
21
- <div class="row">
22
-
23
- <!-- Button Panel -->
24
- <div class="col-lg-4">
25
-
26
- <div class="panel panel-inverse">
27
- <div class="panel-heading text-center">
28
- <h4 class="panel-title">Options Panel</h4>
29
- </div>
30
- <div class="panel-body">
31
- <div class="btn-group d-flex" role="group">
32
- <%= link_to 'Update', phcdevworks_real_estate.edit_property_feature_path, class: "btn btn-primary" %>
33
- <%= link_to 'Remove', phcdevworks_real_estate.property_features_path, method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-danger" %>
34
- </div>
35
- </div>
36
- </div>
37
-
38
- </div>
39
- <!-- Button Panel -->
40
-
41
- <!-- Main Panel -->
42
- <div class="col-lg-8">
43
- <!-- Panel Content -->
44
- <div class="panel panel-inverse">
45
- <div class="panel-heading">
46
- <div class="panel-heading-btn">
47
- <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
48
- <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
49
- <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
50
- </div>
51
- <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
52
- </div>
53
- <div class="panel-body">
54
- <p>
55
- <strong>Feature Name</strong>
56
- <%= @property_feature.property_feature_name %>
57
- </p>
58
- </div>
59
- </div>
60
- <!-- Panel Content -->
61
- </div>
62
- <!-- Main Panel -->
63
- </div>
64
- <!-- Page Content -->
1
+ <!-- -PHCDEV- Title System -->
2
+ <% phc_title "Property Features Manager" %>
3
+ <% phc_title_tagline "Property Features Details" %>
4
+ <% phc_breadcrumb_one link_to "Property" %>
5
+ <% phc_breadcrumb_two link_to "Features" %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- -PHCDEV- Title System -->
8
+
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
13
+ </ol>
14
+ <!-- -PHCDEV- Bradcrumbs -->
15
+
16
+ <!-- -PHCDEV- Header -->
17
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
18
+ <!-- -PHCDEV- Header -->
19
+
20
+ <!-- -PHCDEV- Page Content -->
21
+ <div class="row">
22
+
23
+ <!-- -PHCDEV- Button Panel -->
24
+ <div class="col-lg-4">
25
+
26
+ <div class="panel panel-inverse">
27
+ <div class="panel-heading text-center">
28
+ <h4 class="panel-title">Options Panel</h4>
29
+ </div>
30
+ <div class="panel-body">
31
+ <div class="btn-group d-flex" role="group">
32
+ <%= link_to 'Update', phcdevworks_real_estate.edit_property_feature_path, class: "btn btn-primary" %>
33
+ <%= link_to 'Remove', phcdevworks_real_estate.property_features_path, method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-danger" %>
34
+ </div>
35
+ </div>
36
+ </div>
37
+
38
+ </div>
39
+ <!-- -PHCDEV- Button Panel -->
40
+
41
+ <!-- -PHCDEV- Main Panel -->
42
+ <div class="col-lg-8">
43
+ <!-- -PHCDEV- Panel Content -->
44
+ <div class="panel panel-inverse">
45
+ <div class="panel-heading">
46
+ <div class="panel-heading-btn">
47
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
48
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
49
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
50
+ </div>
51
+ <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
52
+ </div>
53
+ <div class="panel-body">
54
+ <p>
55
+ <strong>Feature Name</strong>
56
+ <%= @property_feature.property_feature_name %>
57
+ </p>
58
+ </div>
59
+ </div>
60
+ <!-- -PHCDEV- Panel Content -->
61
+ </div>
62
+ <!-- -PHCDEV- Main Panel -->
63
+ </div>
64
+ <!-- -PHCDEV- Page Content -->