ish_manager 0.1.8.192 → 0.1.8.193

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: 1ec96843a9a08d33c1dcf7eea155691f9e81b845ee5703fb92444b0f6d741d9c
4
- data.tar.gz: 5da730750b29ad51d10203af20c7da39a1bd80d32fa38da31b9467f84e65ce8d
3
+ metadata.gz: b29db077f5d27347c78f2fdf53bf710557d9c1137c8fb0160fdac9e527c143de
4
+ data.tar.gz: acf462ef763dc763ae6ea6746d813cf15388b4b3655370af3628fdf35863ac86
5
5
  SHA512:
6
- metadata.gz: aaf9cdf34e17558cc7d0b7a0e6101f452a6a121773585ba2515cdbbea3076a74a552ea2a3baee74cf37645336f53a46b5fc56f7764433a23ca60016a2b296917
7
- data.tar.gz: 4547ed08d0bb63e427d8ab20586b14fb014299ccfda049caa679aacda6b89b8c7e55f24ad5040c2a86bc0cb5779e6bdc37234dca5cdf5d34d1b210fdd165fc01
6
+ metadata.gz: 5c3612fb922cfa6963c993b47ad4e9f7792effb87c6eb1c22f2501cf1d3be03735990366cd7d9243ae546b862c7e9ca2a0918135be1eb7a678c51981e69645f5
7
+ data.tar.gz: '09f2af0d7130f9c03736d18f83b6cbd0951be34caf312918e42153a70ee58afd5f586baa5a50f0246b186e87be7f44af22f3a065db863ce792bb4260c5f0fbfe'
@@ -13,6 +13,8 @@
13
13
  *= require ish_manager/bootstrap
14
14
  *= require_self
15
15
  *= require ish_manager/tags
16
+ *= require ish_manager/maps
17
+ *= require ish_manager/utils
16
18
  */
17
19
 
18
20
 
@@ -0,0 +1,59 @@
1
+
2
+ .maps-index {
3
+ h1 {
4
+ padding-bottom: 10px;
5
+ border-bottom: 10px solid #cecece;
6
+ }
7
+ .item {
8
+ display: flex;
9
+ flex-direction: row;
10
+ padding-bottom: 10px;
11
+ border-bottom: 2px solid #cecece;
12
+
13
+ input[type='submit'] {
14
+ font-size: 1.1em;
15
+ padding: 0.3em;
16
+ }
17
+
18
+ .row {
19
+ display: flex;
20
+ flex-direction: row;
21
+ justify-content: flex-start;
22
+ align-content: flex-start;
23
+
24
+ height: 3em;
25
+ line-height: 3em;
26
+
27
+ width: 100%;
28
+ margin: 0 0 1em 0;
29
+ padding: 0;
30
+
31
+ > * {
32
+ padding-right: 1em;
33
+ }
34
+ }
35
+ }
36
+ }
37
+
38
+ .maps-show {
39
+ .the-map {
40
+ position: relative;
41
+
42
+ .marker {
43
+ border: 1px solid yellow;
44
+ }
45
+ }
46
+ }
47
+
48
+ .markers--form {
49
+ /* width: 300px;
50
+ margin: auto; */
51
+ }
52
+
53
+ .markers-list {
54
+ .item {
55
+ border: 1px solid #d59d05; /* brown*/
56
+ padding: .5em;
57
+ margin: 1em 0 0 0;
58
+ }
59
+ }
@@ -0,0 +1,26 @@
1
+
2
+ ul:not(.browser-default).errors,
3
+ ul:not(.browser-default).bullets, {
4
+ > li {
5
+ list-style-type: circle;
6
+ margin-left: 1em;
7
+ }
8
+ }
9
+
10
+ .flat-row {
11
+ display: flex;
12
+ flex-direction: row;
13
+ justify-content: flex-start;
14
+ align-content: flex-start;
15
+
16
+ height: 3em;
17
+ line-height: 3em;
18
+
19
+ width: 100%;
20
+ margin: 0 0 1em 0;
21
+ padding: 0;
22
+
23
+ > * {
24
+ padding-right: 1em;
25
+ }
26
+ }
@@ -0,0 +1,66 @@
1
+
2
+ class IshManager::MapsController < IshManager::ApplicationController
3
+
4
+ before_action :set_map, only: [:show, :edit, :update, :destroy]
5
+
6
+ def index
7
+ authorize! :index, ::Gameui::Map
8
+ @maps = ::Gameui::Map.all
9
+ end
10
+
11
+ def show
12
+ authorize! :show, @map
13
+ end
14
+
15
+ def new
16
+ authorize! :new, ::Gameui::Map
17
+ @map = ::Gameui::Map.new
18
+ end
19
+
20
+ def edit
21
+ authorize! :edit, @map
22
+ end
23
+
24
+ def create
25
+ @map = ::Gameui::Map.new(map_params)
26
+ authorize! :create, @map
27
+
28
+ respond_to do |format|
29
+ if @map.save
30
+ format.html { redirect_to gameui_map_path(@map.id), notice: 'Map was successfully created.' }
31
+ else
32
+ format.html { render :new }
33
+ end
34
+ end
35
+ end
36
+
37
+ def update
38
+ authorize! :update, @map
39
+ respond_to do |format|
40
+ if @map.update(map_params)
41
+ format.html { redirect_to @map, notice: 'Map was successfully updated.' }
42
+ else
43
+ format.html { render :edit }
44
+ end
45
+ end
46
+ end
47
+
48
+ def destroy
49
+ authorize! :destroy, @map
50
+ @map.destroy
51
+ respond_to do |format|
52
+ format.html { redirect_to gameui_maps_path, notice: 'Map was successfully destroyed.' }
53
+ end
54
+ end
55
+
56
+ private
57
+
58
+ def set_map
59
+ @map = ::Gameui::Map.find(params[:id])
60
+ end
61
+
62
+ def map_params
63
+ params.require(:gameui_map).permit!
64
+ end
65
+
66
+ end
@@ -0,0 +1,73 @@
1
+
2
+ class IshManager::MarkersController < IshManager::ApplicationController
3
+
4
+ before_action :set_map, except: [ :destroy, :edit, :update ]
5
+ before_action :set_marker, only: [ :edit, :update ]
6
+
7
+ =begin
8
+ def index
9
+ authorize! :markers, ::Gameui::Map
10
+ end
11
+ =end
12
+
13
+ def new
14
+ authorize! :new_marker, ::Gameui::Map
15
+ @marker = ::Gameui::Marker.new
16
+ end
17
+
18
+ def edit
19
+ authorize! :edit_marker, @map
20
+ end
21
+
22
+ def create
23
+ @marker = ::Gameui::Marker.new(marker_params)
24
+ @marker.map = @map
25
+ authorize! :create_marker, @map
26
+ @map_id = @map.id
27
+
28
+ respond_to do |format|
29
+ if @marker.save
30
+ format.html { redirect_to gameui_map_path(@map.id), notice: 'Marker was successfully created.' }
31
+ else
32
+ format.html { render :new }
33
+ end
34
+ end
35
+ end
36
+
37
+ def update
38
+ authorize! :update_marker, @map
39
+ respond_to do |format|
40
+ if @marker.update(marker_params)
41
+ format.html { redirect_to @map, notice: 'Marker was successfully updated.' }
42
+ else
43
+ format.html { render :edit }
44
+ end
45
+ end
46
+ end
47
+
48
+ def destroy
49
+ @marker = ::Gameui::Marker.find params[:id]
50
+ @map = @marker.map
51
+ authorize! :destroy_marker, @map
52
+ @marker.destroy
53
+ respond_to do |format|
54
+ format.html { redirect_to @map, notice: 'Marker was successfully destroyed.' }
55
+ end
56
+ end
57
+
58
+ private
59
+
60
+ def set_map
61
+ @map = ::Gameui::Map.find(params[:map_id] || params[:gameui_marker][:map_id])
62
+ end
63
+
64
+ def set_marker
65
+ @marker = ::Gameui::Marker.find params[:id]
66
+ @map = @marker.map
67
+ end
68
+
69
+ def marker_params
70
+ params.require(:gameui_marker).permit!
71
+ end
72
+
73
+ end
@@ -23,14 +23,13 @@ class IshManager::NewsitemsController < IshManager::ApplicationController
23
23
 
24
24
  def create
25
25
  @newsitem = Newsitem.new params[:newsitem].permit!
26
- @resource = City.find params[:city_id] if params[:city_id]
27
- @resource = City.find params[:newsitem][:city_id] if !params[:newsitem][:city_id].blank?
28
- @resource = Site.find params[:site_id] if params[:site_id]
29
- @resource = Site.find params[:newsitem][:site_id] if !params[:newsitem][:site_id].blank?
30
- @resource = Tag.find params[:tag_id] if params[:tag_id]
31
- @resource = Tag.find params[:newsitem][:tag_id] if !params[:newsitem][:tag_id].blank?
32
-
33
- @resource = IshModels::UserProfile.find params[:newsitem][:user_profile_id] if !params[:newsitem][:user_profile_id].blank?
26
+ @resource ||= City.find params[:city_id] if params[:city_id]
27
+ @resource ||= City.find params[:newsitem][:city_id] if !params[:newsitem][:city_id].blank? # blank? required
28
+ @resource ||= Site.find params[:site_id] if params[:site_id]
29
+ @resource ||= Site.find params[:newsitem][:site_id] if !params[:newsitem][:site_id].blank?
30
+ @resource ||= Tag.find params[:tag_id] if params[:tag_id]
31
+ @resource ||= Tag.find params[:newsitem][:tag_id] if !params[:newsitem][:tag_id].blank?
32
+ @resource ||= IshModels::UserProfile.find params[:newsitem][:user_profile_id] if !params[:newsitem][:user_profile_id].blank?
34
33
  @resource.newsitems << @newsitem
35
34
 
36
35
  authorize! :create_newsitem, @resource
@@ -42,7 +41,7 @@ class IshManager::NewsitemsController < IshManager::ApplicationController
42
41
 
43
42
  url = case @resource.class.name
44
43
  when "City"
45
- edit_city_path( @resouce.id )
44
+ edit_city_path( @resource.id )
46
45
  when "Tag"
47
46
  @resource.site.touch
48
47
  tag_path( @resource.id )
@@ -22,6 +22,7 @@ module IshManager
22
22
  def pretty_date date
23
23
  date.to_s[0, 10]
24
24
  end
25
+ def pp_date a; pretty_date a; end
25
26
 
26
27
  def resource_path resource
27
28
  case resource.class.name
@@ -34,5 +35,20 @@ module IshManager
34
35
  end
35
36
  end
36
37
 
38
+ #
39
+ # api paths
40
+ #
41
+ def api_city_path city
42
+ "/api/cities/view/#{city.cityname}.json"
43
+ end
44
+
45
+ def api_map_path map
46
+ "/api/maps/view/#{map.slug}"
47
+ end
48
+
49
+ def api_marker_path marker
50
+ "/api/markers/view/#{marker.slug}"
51
+ end
52
+
37
53
  end
38
54
  end
@@ -6,6 +6,7 @@
6
6
  %i.fa.fa-compress.collapse-expand#collapseHeader
7
7
  .content
8
8
  %ul.nav.nav-pills
9
+ %li{ :class => params[:controller] == 'ish_manager/maps' ? 'active' : '' }= link_to 'GameUi::Maps', gameui_maps_path
9
10
  %li{ :class => params[:controller] == 'ish_manager/cities' ? 'active' : '' }= link_to 'Cities', cities_path
10
11
  %li{ :class => params[:controller] == 'ish_manager/events' ? 'active' : '' }= link_to 'Events', events_path
11
12
  %li{ :class => params[:controller] == 'ish_manager/venues' ? 'active' : '' }= link_to 'Venues', venues_path
@@ -1,6 +1,9 @@
1
1
 
2
2
  .meta
3
+ - if defined?(item.premium_tier) && item.premium_tier > 0
4
+ <b>$#{item.premium_tier}</b>
3
5
  <b>On</b> #{item.created_at.to_s[0...10]}
6
+
4
7
  - if item.city
5
8
  <b>In City:</b> #{link_to item.city.name, city_path( item.city )}
6
9
  - if item.tag
@@ -1,5 +1,7 @@
1
1
 
2
- %h2 #{@city.name} #{link_to image_edit, edit_city_path(@city)}
2
+ %h2
3
+ #{@city.name} #{link_to image_edit, edit_city_path(@city)}
4
+ = link_to 'API', api_city_path(@city)
3
5
  %ul
4
6
  %li &lt;#{@city.x}, #{@city.y}&gt;
5
7
  %li Cityname: <em>#{@city.cityname}</em>
@@ -1,4 +1,8 @@
1
1
 
2
+ -#
3
+ -# ish_manager / galleries / _form
4
+ -#
5
+
2
6
  - url ||= galleries_path
3
7
 
4
8
  = form_for gallery, :url => url do |f|
@@ -47,5 +51,11 @@
47
51
  .col-sm-3
48
52
  = f.check_box :is_trash
49
53
  = f.label :is_trash
54
+ .col-sm-3
55
+ = f.label :premium_tier
56
+ = f.number_field :premium_tier
57
+ .col-sm-3
58
+ = f.label :username
59
+ = f.text_field :username
50
60
  .col-sm-3
51
61
  = f.submit 'Submit'
@@ -4,7 +4,7 @@
4
4
 
5
5
  = render 'ish_manager/sites/header', :site => @site if @site
6
6
 
7
- .title.hide
7
+ -# .title.hide
8
8
  .row
9
9
  .col-sm-12.col-md-12
10
10
  %h1.center Galleries
@@ -0,0 +1,40 @@
1
+
2
+ = form_for @map do |f|
3
+ - if @map.errors.any?
4
+ #error_explanation
5
+ %h2= "#{pluralize(@map.errors.count, "error")} prohibited this map from being saved:"
6
+ %ul
7
+ - @map.errors.full_messages.each do |message|
8
+ %li= message
9
+
10
+
11
+ .row
12
+ .col-md-3
13
+ .field
14
+ = f.label :slug
15
+ = f.text_field :slug
16
+ .col-md-3
17
+ .field
18
+ = f.label :parent_slug
19
+ = f.text_field :parent_slug
20
+ .col-md-3
21
+ .field
22
+ = f.label :w
23
+ = f.number_field :w
24
+ .col-md-3
25
+ .field
26
+ = f.label :h
27
+ = f.number_field :h
28
+ .field
29
+ = f.label :description
30
+ = f.text_field :description
31
+ .field
32
+ = f.label :img_path
33
+ = f.text_field :img_path
34
+ .row
35
+ .col-md-4
36
+ .field
37
+ = f.label :ordering_type
38
+ = select_tag :ordering_type, options_for_select(::Gameui::Map::ORDERING_TYPES)
39
+ .actions
40
+ = f.submit 'Save'
@@ -0,0 +1,8 @@
1
+
2
+ .flat-row
3
+ .a= link_to map.slug, map
4
+ .a= button_to '~', edit_gameui_map_path(map), method: :get
5
+ .a <b>#{map.w}x#{map.h}_#{map.slug}</b>
6
+ .a= button_to '+marker', new_gameui_map_marker_path(map), method: :get
7
+ .a= link_to '[api]', api_map_path(map)
8
+ .a= button_to 'x', map, method: :delete, data: { confirm: 'Are you sure?' }
@@ -0,0 +1,3 @@
1
+ %h1 Editing map
2
+
3
+ = render 'form'
@@ -0,0 +1,19 @@
1
+
2
+ .maps-index
3
+ %h1 Maps #{link_to '[+]', new_gameui_map_path}
4
+ - @maps.each do |map|
5
+ .item
6
+ .col
7
+ = render 'map_flat_row', map: map
8
+ %p= map.description
9
+ = image_tag map.img_path, width: 400
10
+ .col
11
+ .row
12
+ .a Markers (#{map.markers.length})
13
+ .a #{button_to '+', new_gameui_map_marker_path(map), method: :get}
14
+ %ul.markers
15
+ - map.markers.each do |marker|
16
+ %li
17
+ = marker.slug
18
+ = link_to '[~]', edit_gameui_marker_path(marker)
19
+
@@ -0,0 +1,4 @@
1
+ %h1 New map
2
+
3
+ = render 'form'
4
+
@@ -0,0 +1,20 @@
1
+
2
+ .maps-show
3
+ = render 'map_flat_row', map: @map
4
+ .descr= @map.description
5
+
6
+ .the-map
7
+ = image_tag @map.img_path, width: @map.w
8
+ - @map.markers.each do |marker|
9
+ .marker{ style: "position: absolute; left: #{marker.x}px; top: #{marker.y}px;" }= image_tag marker.img_path
10
+
11
+ .markers-list
12
+ - @map.markers.each do |marker|
13
+ .item
14
+ .flat-row
15
+ .a= marker.slug
16
+ .a= button_to '~', edit_gameui_marker_path(marker), method: :get
17
+ .a= button_to 'x', marker, method: :delete, data: { confirm: 'Are you sure?' }
18
+ .a= link_to '[api]', api_marker_path(marker)
19
+ %ul.bullets
20
+ %li <b>item_type:</b> #{marker.item_type}
@@ -0,0 +1,75 @@
1
+
2
+ .markers--form
3
+
4
+ = form_for @marker do |f|
5
+ -# = f.hidden_field :map_id, value: (params['map_id']||@map_id)
6
+
7
+ - if @marker.errors.any?
8
+ #error_explanation
9
+ %p= "#{pluralize(@marker.errors.count, "error")} prohibited this map from being saved:"
10
+ %ul.errors
11
+ - @marker.errors.full_messages.each do |message|
12
+ %li= message
13
+
14
+ .row
15
+ .col-md-1
16
+ = f.label :map
17
+ = f.text_field :map_id, value: @marker.map_id || params[:map_id]
18
+ .col-md-5
19
+ .field
20
+ = f.label :name
21
+ = f.text_field :name
22
+ .col-md-6
23
+ .field
24
+ = f.label :slug
25
+ = f.text_field :slug
26
+ .row
27
+ .col-md-3
28
+ .field
29
+ = f.label :w
30
+ = f.number_field :w
31
+ .col-md-3
32
+ .field
33
+ = f.label :h
34
+ = f.number_field :h
35
+ .col-md-3
36
+ .field
37
+ = f.label :x
38
+ = f.number_field :x
39
+ .col-md-3
40
+ .field
41
+ = f.label :y
42
+ = f.number_field :y
43
+ .field
44
+ = f.label :img_path
45
+ = f.text_field :img_path
46
+ .field
47
+ = f.label :title_img_path
48
+ = f.text_field :title_img_path
49
+ .row
50
+ .col-md-3 &nbsp;
51
+ .col-md-6
52
+ .field
53
+ = f.label :description
54
+ = f.text_area :description
55
+ .row
56
+ .col-md-4
57
+ .field
58
+ = f.label :item_type
59
+ = f.select :item_type, options_for_select(::Gameui::Marker::ITEM_TYPES)
60
+ .col-md-4
61
+ .field
62
+ = f.label :ordering
63
+ = f.text_field :ordering
64
+ .col-md-4
65
+ .row
66
+ .col-md-3 &nbsp;
67
+ .col-md-6
68
+ .row
69
+ .col-md-6
70
+ .field
71
+ = f.check_box :is_active
72
+ = f.label :is_active
73
+ .col-md-6
74
+ .actions
75
+ = f.submit 'Save'
@@ -0,0 +1,4 @@
1
+
2
+ Editing marker for map `#{@map.slug}`
3
+
4
+ = render 'form'
@@ -0,0 +1,4 @@
1
+ %h1 New marker for #{@map.slug}
2
+
3
+ = render 'form'
4
+
@@ -30,6 +30,7 @@
30
30
  Desc: #{n.descr}
31
31
  %li Report id: #{n.report_id}
32
32
  %li Gallery id: #{n.gallery_id}
33
+ %li username: #{n.username}
33
34
  - if n.photo
34
35
  %li Photo id: #{n.photo.id}
35
36
  = render 'ish_manager/newsitems/item', :newsitem => n
@@ -25,9 +25,10 @@
25
25
  %br
26
26
  .gray
27
27
  - if report.site
28
- Site #{report.site.domain}/#{report.site.lang}
29
- %br
30
- = report.created_at
28
+ Site <b>#{report.site.domain}/#{report.site.lang}</b>
29
+ - if report.city
30
+ City <b>#{report.city.name}</b>
31
+ = pp_date report.created_at
31
32
  - if report.photo
32
33
  = image_tag report.photo.photo.url :thumb
33
34
 
@@ -12,6 +12,7 @@
12
12
  %ul
13
13
  %li= link_to '[edit]', edit_user_profile_path( profile )
14
14
  %li <b>Email:</b> #{profile.email}
15
+ %li <b>username:</b> #{profile.username}
15
16
  %li <b>Name:</b> #{profile.name}
16
17
  %li <b>Role:</b> #{profile.role_name}
17
18
  %li <b>User.email:</b> #{profile.user ? profile.user.email : nil}
data/config/routes.rb CHANGED
@@ -28,7 +28,7 @@ IshManager::Engine.routes.draw do
28
28
  post 'multiadd', :to => 'photos#j_create', :as => :multiadd
29
29
  resources :newsitems
30
30
  end
31
-
31
+
32
32
  resources :invoices do
33
33
  # resources :payments
34
34
  end
@@ -37,6 +37,13 @@ IshManager::Engine.routes.draw do
37
37
  get 'leads/done', :to => 'leads#index', :defaults => { :is_done => true }, :as => :done_leads
38
38
  resources :leads
39
39
 
40
+ namespace 'gameui' do
41
+ resources 'maps' do
42
+ resources 'markers'
43
+ end
44
+ resources 'markers' # redundant
45
+ end
46
+
40
47
  resources :newsitems
41
48
 
42
49
  resources :orders
data/lib/ish_manager.rb CHANGED
@@ -7,4 +7,7 @@ require 'kaminari/actionview'
7
7
 
8
8
  module IshManager
9
9
  # Your code goes here...
10
- end
10
+
11
+ module Gameui
12
+ end
13
+ end
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.192
4
+ version: 0.1.8.193
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-05 00:00:00.000000000 Z
11
+ date: 2020-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -150,10 +150,12 @@ files:
150
150
  - app/assets/javascripts/ish_manager/materialize.js
151
151
  - app/assets/stylesheets/ish_manager/application.css
152
152
  - app/assets/stylesheets/ish_manager/bootstrap.css
153
+ - app/assets/stylesheets/ish_manager/maps.scss
153
154
  - app/assets/stylesheets/ish_manager/materialize.css
154
155
  - app/assets/stylesheets/ish_manager/tags.css
155
156
  - app/assets/stylesheets/ish_manager/trash/bootstrap.min.css
156
157
  - app/assets/stylesheets/ish_manager/trash/bootstrap.min.css.map
158
+ - app/assets/stylesheets/ish_manager/utils.scss
157
159
  - app/controllers/ish_manager/ally_controller.rb
158
160
  - app/controllers/ish_manager/application_controller.rb
159
161
  - app/controllers/ish_manager/campaigns_controller.rb
@@ -165,6 +167,8 @@ files:
165
167
  - app/controllers/ish_manager/galleries_controller.rb
166
168
  - app/controllers/ish_manager/invoices_controller.rb
167
169
  - app/controllers/ish_manager/leads_controller.rb
170
+ - app/controllers/ish_manager/maps_controller.rb
171
+ - app/controllers/ish_manager/markers_controller.rb
168
172
  - app/controllers/ish_manager/newsitems_controller.rb
169
173
  - app/controllers/ish_manager/orders_controller.rb
170
174
  - app/controllers/ish_manager/payments_controller.rb
@@ -251,6 +255,15 @@ files:
251
255
  - app/views/ish_manager/leads/edit.haml
252
256
  - app/views/ish_manager/leads/index.haml
253
257
  - app/views/ish_manager/leads/new.haml
258
+ - app/views/ish_manager/maps/_form.haml
259
+ - app/views/ish_manager/maps/_map_flat_row.haml
260
+ - app/views/ish_manager/maps/edit.haml
261
+ - app/views/ish_manager/maps/index.haml
262
+ - app/views/ish_manager/maps/new.haml
263
+ - app/views/ish_manager/maps/show.haml
264
+ - app/views/ish_manager/markers/_form.haml
265
+ - app/views/ish_manager/markers/edit.haml
266
+ - app/views/ish_manager/markers/new.haml
254
267
  - app/views/ish_manager/newsitems/_form.haml
255
268
  - app/views/ish_manager/newsitems/_index.haml
256
269
  - app/views/ish_manager/newsitems/_item.haml