apidae 0.7.3 → 0.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/README.rdoc +2 -2
  4. data/Rakefile +38 -38
  5. data/app/assets/images/apidae/logo-apidae-grey.svg +84 -84
  6. data/app/assets/javascripts/apidae/application.js +13 -13
  7. data/app/assets/stylesheets/apidae/application.css +15 -15
  8. data/app/controllers/apidae/api_controller.rb +25 -25
  9. data/app/controllers/apidae/application_controller.rb +6 -6
  10. data/app/controllers/apidae/dashboard_controller.rb +13 -13
  11. data/app/controllers/apidae/import_controller.rb +68 -68
  12. data/app/controllers/apidae/objects_controller.rb +59 -59
  13. data/app/controllers/apidae/projects_controller.rb +35 -35
  14. data/app/controllers/apidae/references_controller.rb +9 -9
  15. data/app/controllers/apidae/selections_controller.rb +53 -53
  16. data/app/helpers/apidae/api_helper.rb +4 -4
  17. data/app/helpers/apidae/application_helper.rb +4 -4
  18. data/app/helpers/apidae/dashboard_helper.rb +4 -4
  19. data/app/helpers/apidae/import_helper.rb +4 -4
  20. data/app/helpers/apidae/objects_helper.rb +4 -4
  21. data/app/helpers/apidae/references_helper.rb +4 -4
  22. data/app/helpers/apidae/selections_helper.rb +4 -4
  23. data/app/models/apidae/application_record.rb +5 -5
  24. data/app/models/apidae/export.rb +13 -13
  25. data/app/models/apidae/file_import.rb +161 -161
  26. data/app/models/apidae/obj.rb +351 -351
  27. data/app/models/apidae/project.rb +4 -4
  28. data/app/models/apidae/reference.rb +45 -45
  29. data/app/models/apidae/selection.rb +160 -160
  30. data/app/models/apidae/selection_object.rb +6 -6
  31. data/app/models/apidae/town.rb +28 -27
  32. data/app/views/apidae/dashboard/index.html.erb +41 -41
  33. data/app/views/apidae/import/callback.html.erb +2 -2
  34. data/app/views/apidae/objects/_form.html.erb +73 -73
  35. data/app/views/apidae/objects/edit.html.erb +6 -6
  36. data/app/views/apidae/objects/index.html.erb +34 -34
  37. data/app/views/apidae/objects/index.json.jbuilder +6 -6
  38. data/app/views/apidae/objects/new.html.erb +5 -5
  39. data/app/views/apidae/objects/show.html.erb +74 -74
  40. data/app/views/apidae/projects/edit.html.erb +32 -32
  41. data/app/views/apidae/projects/index.html.erb +34 -34
  42. data/app/views/apidae/references/index.html.erb +34 -34
  43. data/app/views/apidae/selections/_form.html.erb +29 -29
  44. data/app/views/apidae/selections/edit.html.erb +6 -6
  45. data/app/views/apidae/selections/index.html.erb +34 -34
  46. data/app/views/apidae/selections/new.html.erb +5 -5
  47. data/app/views/apidae/selections/show.html.erb +19 -19
  48. data/app/views/layouts/apidae/application.html.erb +14 -14
  49. data/config/locales/apidae.fr.yml +6 -6
  50. data/config/routes.rb +14 -14
  51. data/db/migrate/20170512212941_create_apidae_selections.rb +11 -11
  52. data/db/migrate/20170512214641_create_apidae_objects.rb +22 -22
  53. data/db/migrate/20170512221525_create_apidae_objects_apidae_selections.rb +8 -8
  54. data/db/migrate/20170513114002_create_apidae_towns.rb +15 -15
  55. data/db/migrate/20170513114409_add_town_insee_code_to_objects.rb +5 -5
  56. data/db/migrate/20170513115401_add_pictures_data_to_objects.rb +5 -5
  57. data/db/migrate/20170513121215_create_apidae_attached_files.rb +13 -13
  58. data/db/migrate/20170513205932_rename_objects_selections_table.rb +5 -5
  59. data/db/migrate/20170720161134_add_entity_data_to_objects.rb +5 -5
  60. data/db/migrate/20170730102424_create_apidae_file_imports.rb +13 -13
  61. data/db/migrate/20171025075304_create_apidae_exports.rb +15 -15
  62. data/db/migrate/20180217222410_create_apidae_selection_objects.rb +10 -10
  63. data/db/migrate/20180218172704_change_text_columns_to_json.rb +10 -10
  64. data/db/migrate/20180218231319_add_service_data_to_apidae_objects.rb +5 -5
  65. data/db/migrate/20180222104915_add_rates_data_to_apidae_objects.rb +6 -6
  66. data/db/migrate/20180222105302_rename_openings_to_openings_data.rb +5 -5
  67. data/db/migrate/20180307164936_add_attachments_data_to_apidae_objects.rb +5 -5
  68. data/db/migrate/20180307170349_create_apidae_references.rb +12 -12
  69. data/db/migrate/20180314093512_add_tags_data_to_apidae_objects.rb +5 -5
  70. data/db/migrate/20180314132631_add_meta_data_to_apidae_objects.rb +5 -5
  71. data/db/migrate/20180319143954_remove_apidae_id_unicity.rb +6 -6
  72. data/db/migrate/20180417164604_add_location_data_to_apidae_objects.rb +5 -5
  73. data/db/migrate/20180417165744_remove_address_from_apidae_objects.rb +5 -5
  74. data/db/migrate/20180417171344_remove_lat_lng_from_apidae_objects.rb +6 -6
  75. data/db/migrate/20180418141248_add_description_data_to_apidae_objects.rb +5 -5
  76. data/db/migrate/20180418141305_remove_desc_columns_from_apidae_objects.rb +6 -6
  77. data/db/migrate/20180424141656_add_meta_data_to_apidae_references.rb +5 -5
  78. data/db/migrate/20180519170210_remove_insee_code_unicity.rb +7 -7
  79. data/db/migrate/20180521211735_destroy_attached_files.rb +5 -5
  80. data/db/migrate/20180625050400_rename_objects_to_obj.rb +5 -5
  81. data/db/migrate/20181024072424_add_project_id_to_selections.rb +5 -5
  82. data/db/migrate/20181024072843_create_apidae_projects.rb +10 -10
  83. data/db/migrate/20190328122424_add_description_to_apidae_towns.rb +5 -0
  84. data/lib/apidae.rb +4 -4
  85. data/lib/apidae/engine.rb +10 -10
  86. data/lib/apidae/version.rb +3 -3
  87. data/lib/tasks/apidae_tasks.rake +4 -4
  88. data/test/apidae_test.rb +7 -7
  89. data/test/controllers/apidae/api_controller_test.rb +23 -23
  90. data/test/controllers/apidae/dashboard_controller_test.rb +15 -15
  91. data/test/controllers/apidae/import_controller_test.rb +15 -15
  92. data/test/controllers/apidae/objects_controller_test.rb +52 -52
  93. data/test/controllers/apidae/references_controller_test.rb +13 -13
  94. data/test/controllers/apidae/selections_controller_test.rb +52 -52
  95. data/test/data/selections.json +14 -14
  96. data/test/data/structure.json +64 -64
  97. data/test/data/update_selections.json +18 -18
  98. data/test/dummy/README.rdoc +28 -28
  99. data/test/dummy/Rakefile +6 -6
  100. data/test/dummy/app/assets/javascripts/application.js +13 -13
  101. data/test/dummy/app/assets/stylesheets/application.css +15 -15
  102. data/test/dummy/app/controllers/application_controller.rb +5 -5
  103. data/test/dummy/app/helpers/application_helper.rb +2 -2
  104. data/test/dummy/app/views/layouts/application.html.erb +14 -14
  105. data/test/dummy/bin/bundle +3 -3
  106. data/test/dummy/bin/rails +4 -4
  107. data/test/dummy/bin/rake +4 -4
  108. data/test/dummy/bin/setup +29 -29
  109. data/test/dummy/config.ru +4 -4
  110. data/test/dummy/config/application.rb +24 -24
  111. data/test/dummy/config/boot.rb +5 -5
  112. data/test/dummy/config/database.yml +20 -20
  113. data/test/dummy/config/environment.rb +5 -5
  114. data/test/dummy/config/environments/development.rb +41 -41
  115. data/test/dummy/config/environments/production.rb +79 -79
  116. data/test/dummy/config/environments/test.rb +42 -42
  117. data/test/dummy/config/initializers/apidae.rb +18 -18
  118. data/test/dummy/config/initializers/assets.rb +11 -11
  119. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -7
  120. data/test/dummy/config/initializers/cookies_serializer.rb +3 -3
  121. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -4
  122. data/test/dummy/config/initializers/inflections.rb +16 -16
  123. data/test/dummy/config/initializers/mime_types.rb +4 -4
  124. data/test/dummy/config/initializers/session_store.rb +3 -3
  125. data/test/dummy/config/initializers/to_time_preserves_timezone.rb +10 -10
  126. data/test/dummy/config/initializers/wrap_parameters.rb +14 -14
  127. data/test/dummy/config/locales/en.yml +23 -23
  128. data/test/dummy/config/routes.rb +4 -4
  129. data/test/dummy/config/secrets.yml +22 -22
  130. data/test/dummy/db/schema.rb +104 -104
  131. data/test/dummy/public/404.html +67 -67
  132. data/test/dummy/public/422.html +67 -67
  133. data/test/dummy/public/500.html +66 -66
  134. data/test/fixtures/apidae/exports.yml +15 -15
  135. data/test/fixtures/apidae/objects.yml +33 -33
  136. data/test/fixtures/apidae/references.yml +11 -11
  137. data/test/fixtures/apidae/selection_objects.yml +9 -9
  138. data/test/fixtures/apidae/selections.yml +11 -11
  139. data/test/fixtures/apidae/towns.yml +15 -15
  140. data/test/integration/navigation_test.rb +8 -8
  141. data/test/models/apidae/export_test.rb +9 -9
  142. data/test/models/apidae/file_import_test.rb +88 -88
  143. data/test/models/apidae/object_test.rb +9 -9
  144. data/test/models/apidae/reference_test.rb +9 -9
  145. data/test/models/apidae/selection_object_test.rb +9 -9
  146. data/test/models/apidae/selection_test.rb +9 -9
  147. data/test/models/apidae/town_test.rb +9 -9
  148. data/test/test_helper.rb +22 -22
  149. metadata +49 -50
  150. data/test/dummy/log/test.log +0 -2109
@@ -1,33 +1,33 @@
1
- <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
- <div id="apidae_header" class="<%= styles[:header] %>">
3
- <%= link_to 'Retour', :back, class: styles[:back] %>
4
- <h1 class="<%= styles[:h1] %>">Apidae - Modifier le projet</h1>
5
- </div>
6
- <div id="apidae_edit_project" class="<%= styles[:wrapper] %>">
7
- <div id="apidae_form" class="<%= styles[:body] %>">
8
- <%= form_for(@project, class: styles[:form]) do |f| %>
9
- <% if @project.errors.any? %>
10
- <div id="apidae_form_errors">
11
- <ul>
12
- <% @project.errors.full_messages.each do |message| %>
13
- <li><%= message %></li>
14
- <% end %>
15
- </ul>
16
- </div>
17
- <% end %>
18
-
19
- <div class="<%= styles[:form_field] %>">
20
- <div><%= f.label :name %></div>
21
- <div><%= f.text_field :name %></div>
22
- </div>
23
- <div class="<%= styles[:form_field] %>">
24
- <div><%= f.label :api_key %></div>
25
- <div><%= f.text_field :api_key %></div>
26
- </div>
27
- <div class="<%= styles[:form_actions] %>">
28
- <%= f.submit 'Valider' %>
29
- </div>
30
- <% end %>
31
- </div>
32
- </div>
1
+ <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
+ <div id="apidae_header" class="<%= styles[:header] %>">
3
+ <%= link_to 'Retour', :back, class: styles[:back] %>
4
+ <h1 class="<%= styles[:h1] %>">Apidae - Modifier le projet</h1>
5
+ </div>
6
+ <div id="apidae_edit_project" class="<%= styles[:wrapper] %>">
7
+ <div id="apidae_form" class="<%= styles[:body] %>">
8
+ <%= form_for(@project, class: styles[:form]) do |f| %>
9
+ <% if @project.errors.any? %>
10
+ <div id="apidae_form_errors">
11
+ <ul>
12
+ <% @project.errors.full_messages.each do |message| %>
13
+ <li><%= message %></li>
14
+ <% end %>
15
+ </ul>
16
+ </div>
17
+ <% end %>
18
+
19
+ <div class="<%= styles[:form_field] %>">
20
+ <div><%= f.label :name %></div>
21
+ <div><%= f.text_field :name %></div>
22
+ </div>
23
+ <div class="<%= styles[:form_field] %>">
24
+ <div><%= f.label :api_key %></div>
25
+ <div><%= f.text_field :api_key %></div>
26
+ </div>
27
+ <div class="<%= styles[:form_actions] %>">
28
+ <%= f.submit 'Valider' %>
29
+ </div>
30
+ <% end %>
31
+ </div>
32
+ </div>
33
33
  <% end %>
@@ -1,35 +1,35 @@
1
- <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
- <div id="apidae_header" class="<%= styles[:header] %>">
3
- <%= link_to 'Retour', root_path, class: styles[:back] %>
4
- <h1 class="<%= styles[:h1] %>">Apidae - Projets</h1>
5
- </div>
6
- <div class="<%= styles[:wrapper] %>">
7
- <div class="<%= styles[:body] %>">
8
- <table id="apidae_projects" class="<%= styles[:table] %>">
9
- <thead class="<%= styles[:table_head] %>">
10
- <tr>
11
- <th>Nom</th>
12
- <th>Identifiant</th>
13
- <th>Mise à jour</th>
14
- <th></th>
15
- </tr>
16
- </thead>
17
- <tbody class="<%= styles[:table_body] %>">
18
- <% @projects.each do |proj| %>
19
- <tr>
20
- <td><%= proj.name %></td>
21
- <td><%= proj.apidae_id %></td>
22
- <td><%= proj.updated_at.strftime('Le %d/%m/%Y à %H:%M') if proj.updated_at %></td>
23
- <td><%= link_to 'Modifier', edit_project_path(proj) %></td>
24
- </tr>
25
- <% end %>
26
- <% if @projects.empty? %>
27
- <tr>
28
- <td colspan="4">Aucun projet pour le moment.</td>
29
- </tr>
30
- <% end %>
31
- </tbody>
32
- </table>
33
- </div>
34
- </div>
1
+ <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
+ <div id="apidae_header" class="<%= styles[:header] %>">
3
+ <%= link_to 'Retour', root_path, class: styles[:back] %>
4
+ <h1 class="<%= styles[:h1] %>">Apidae - Projets</h1>
5
+ </div>
6
+ <div class="<%= styles[:wrapper] %>">
7
+ <div class="<%= styles[:body] %>">
8
+ <table id="apidae_projects" class="<%= styles[:table] %>">
9
+ <thead class="<%= styles[:table_head] %>">
10
+ <tr>
11
+ <th>Nom</th>
12
+ <th>Identifiant</th>
13
+ <th>Mise à jour</th>
14
+ <th></th>
15
+ </tr>
16
+ </thead>
17
+ <tbody class="<%= styles[:table_body] %>">
18
+ <% @projects.each do |proj| %>
19
+ <tr>
20
+ <td><%= proj.name %></td>
21
+ <td><%= proj.apidae_id %></td>
22
+ <td><%= proj.updated_at.strftime('Le %d/%m/%Y à %H:%M') if proj.updated_at %></td>
23
+ <td><%= link_to 'Modifier', edit_project_path(proj) %></td>
24
+ </tr>
25
+ <% end %>
26
+ <% if @projects.empty? %>
27
+ <tr>
28
+ <td colspan="4">Aucun projet pour le moment.</td>
29
+ </tr>
30
+ <% end %>
31
+ </tbody>
32
+ </table>
33
+ </div>
34
+ </div>
35
35
  <% end %>
@@ -1,35 +1,35 @@
1
- <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
- <div id="apidae_header" class="<%= styles[:header] %>">
3
- <%= link_to 'Retour', root_path, class: styles[:back] %>
4
- <h1 class="<%= styles[:h1] %>">Apidae - Eléments de référence</h1>
5
- </div>
6
- <div class="<%= styles[:wrapper] %>">
7
- <div class="<%= styles[:body] %>">
8
- <table id="apidae_references" class="<%= styles[:table] %>">
9
- <thead class="<%= styles[:table_head] %>">
10
- <tr>
11
- <th>Titre</th>
12
- <th>Identifiant</th>
13
- <th>Type</th>
14
- <th>Mise à jour</th>
15
- </tr>
16
- </thead>
17
- <tbody class="<%= styles[:table_body] %>">
18
- <% @references.each do |ref| %>
19
- <tr>
20
- <td><%= ref.label(:fr) %></td>
21
- <td><%= ref.apidae_id %></td>
22
- <td><%= ref.apidae_type %></td>
23
- <td><%= ref.updated_at.strftime('Le %d/%m/%Y à %H:%M') if ref.updated_at %></td>
24
- </tr>
25
- <% end %>
26
- <% if @references.empty? %>
27
- <tr>
28
- <td colspan="4">Aucune référence importée pour le moment.</td>
29
- </tr>
30
- <% end %>
31
- </tbody>
32
- </table>
33
- </div>
34
- </div>
1
+ <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
+ <div id="apidae_header" class="<%= styles[:header] %>">
3
+ <%= link_to 'Retour', root_path, class: styles[:back] %>
4
+ <h1 class="<%= styles[:h1] %>">Apidae - Eléments de référence</h1>
5
+ </div>
6
+ <div class="<%= styles[:wrapper] %>">
7
+ <div class="<%= styles[:body] %>">
8
+ <table id="apidae_references" class="<%= styles[:table] %>">
9
+ <thead class="<%= styles[:table_head] %>">
10
+ <tr>
11
+ <th>Titre</th>
12
+ <th>Identifiant</th>
13
+ <th>Type</th>
14
+ <th>Mise à jour</th>
15
+ </tr>
16
+ </thead>
17
+ <tbody class="<%= styles[:table_body] %>">
18
+ <% @references.each do |ref| %>
19
+ <tr>
20
+ <td><%= ref.label(:fr) %></td>
21
+ <td><%= ref.apidae_id %></td>
22
+ <td><%= ref.apidae_type %></td>
23
+ <td><%= ref.updated_at.strftime('Le %d/%m/%Y à %H:%M') if ref.updated_at %></td>
24
+ </tr>
25
+ <% end %>
26
+ <% if @references.empty? %>
27
+ <tr>
28
+ <td colspan="4">Aucune référence importée pour le moment.</td>
29
+ </tr>
30
+ <% end %>
31
+ </tbody>
32
+ </table>
33
+ </div>
34
+ </div>
35
35
  <% end %>
@@ -1,29 +1,29 @@
1
- <%= form_for(@selection) do |f| %>
2
- <% if @selection.errors.any? %>
3
- <div id="error_explanation">
4
- <h2><%= pluralize(@selection.errors.count, "error") %> prohibited this selection from being saved:</h2>
5
-
6
- <ul>
7
- <% @selection.errors.full_messages.each do |message| %>
8
- <li><%= message %></li>
9
- <% end %>
10
- </ul>
11
- </div>
12
- <% end %>
13
-
14
- <div class="field">
15
- <%= f.label :label %><br>
16
- <%= f.text_field :label %>
17
- </div>
18
- <div class="field">
19
- <%= f.label :reference %><br>
20
- <%= f.text_field :reference %>
21
- </div>
22
- <div class="field">
23
- <%= f.label :apidae_id %><br>
24
- <%= f.number_field :apidae_id %>
25
- </div>
26
- <div class="actions">
27
- <%= f.submit %>
28
- </div>
29
- <% end %>
1
+ <%= form_for(@selection) do |f| %>
2
+ <% if @selection.errors.any? %>
3
+ <div id="error_explanation">
4
+ <h2><%= pluralize(@selection.errors.count, "error") %> prohibited this selection from being saved:</h2>
5
+
6
+ <ul>
7
+ <% @selection.errors.full_messages.each do |message| %>
8
+ <li><%= message %></li>
9
+ <% end %>
10
+ </ul>
11
+ </div>
12
+ <% end %>
13
+
14
+ <div class="field">
15
+ <%= f.label :label %><br>
16
+ <%= f.text_field :label %>
17
+ </div>
18
+ <div class="field">
19
+ <%= f.label :reference %><br>
20
+ <%= f.text_field :reference %>
21
+ </div>
22
+ <div class="field">
23
+ <%= f.label :apidae_id %><br>
24
+ <%= f.number_field :apidae_id %>
25
+ </div>
26
+ <div class="actions">
27
+ <%= f.submit %>
28
+ </div>
29
+ <% end %>
@@ -1,6 +1,6 @@
1
- <h1>Editing Selection</h1>
2
-
3
- <%= render 'form' %>
4
-
5
- <%= link_to 'Show', @selection %> |
6
- <%= link_to 'Back', selections_path %>
1
+ <h1>Editing Selection</h1>
2
+
3
+ <%= render 'form' %>
4
+
5
+ <%= link_to 'Show', @selection %> |
6
+ <%= link_to 'Back', selections_path %>
@@ -1,35 +1,35 @@
1
- <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
- <div id="apidae_header" class="<%= styles[:header] %>">
3
- <%= link_to 'Retour', root_path, class: styles[:back] %>
4
- <h1 class="<%= styles[:h1] %>">Apidae - Sélections</h1>
5
- </div>
6
- <div id="apidae_dashboard" class="<%= styles[:wrapper] %>">
7
- <div id="apidae_imports_panel" class="<%= styles[:body] %>">
8
- <table id="apidae_selections" class="<%= styles[:table] %>">
9
- <thead class="<%= styles[:table_head] %>">
10
- <tr>
11
- <th>Label</th>
12
- <th>Reference</th>
13
- <th>Identifiant</th>
14
- <th>Objets</th>
15
- </tr>
16
- </thead>
17
- <tbody class="<%= styles[:table_body] %>">
18
- <% @selections.each do |selection| %>
19
- <tr>
20
- <td><%= selection.label %></td>
21
- <td><%= selection.reference %></td>
22
- <td><%= selection.apidae_id %></td>
23
- <td><%= link_to selection.objects.count, selection_objects_path(selection) %></td>
24
- </tr>
25
- <% end %>
26
- <% if @selections.empty? %>
27
- <tr>
28
- <td colspan="4">Aucune sélection importée pour le moment.</td>
29
- </tr>
30
- <% end %>
31
- </tbody>
32
- </table>
33
- </div>
34
- </div>
1
+ <%= render layout: "/layouts/#{Rails.application.config.apidae_layout}" do |styles| %>
2
+ <div id="apidae_header" class="<%= styles[:header] %>">
3
+ <%= link_to 'Retour', root_path, class: styles[:back] %>
4
+ <h1 class="<%= styles[:h1] %>">Apidae - Sélections</h1>
5
+ </div>
6
+ <div id="apidae_dashboard" class="<%= styles[:wrapper] %>">
7
+ <div id="apidae_imports_panel" class="<%= styles[:body] %>">
8
+ <table id="apidae_selections" class="<%= styles[:table] %>">
9
+ <thead class="<%= styles[:table_head] %>">
10
+ <tr>
11
+ <th>Label</th>
12
+ <th>Reference</th>
13
+ <th>Identifiant</th>
14
+ <th>Objets</th>
15
+ </tr>
16
+ </thead>
17
+ <tbody class="<%= styles[:table_body] %>">
18
+ <% @selections.each do |selection| %>
19
+ <tr>
20
+ <td><%= selection.label %></td>
21
+ <td><%= selection.reference %></td>
22
+ <td><%= selection.apidae_id %></td>
23
+ <td><%= link_to selection.objects.count, selection_objects_path(selection) %></td>
24
+ </tr>
25
+ <% end %>
26
+ <% if @selections.empty? %>
27
+ <tr>
28
+ <td colspan="4">Aucune sélection importée pour le moment.</td>
29
+ </tr>
30
+ <% end %>
31
+ </tbody>
32
+ </table>
33
+ </div>
34
+ </div>
35
35
  <% end %>
@@ -1,5 +1,5 @@
1
- <h1>New Selection</h1>
2
-
3
- <%= render 'form' %>
4
-
5
- <%= link_to 'Back', selections_path %>
1
+ <h1>New Selection</h1>
2
+
3
+ <%= render 'form' %>
4
+
5
+ <%= link_to 'Back', selections_path %>
@@ -1,19 +1,19 @@
1
- <p id="notice"><%= notice %></p>
2
-
3
- <p>
4
- <strong>Label:</strong>
5
- <%= @selection.label %>
6
- </p>
7
-
8
- <p>
9
- <strong>Reference:</strong>
10
- <%= @selection.reference %>
11
- </p>
12
-
13
- <p>
14
- <strong>Apidae:</strong>
15
- <%= @selection.apidae_id %>
16
- </p>
17
-
18
- <%= link_to 'Edit', edit_selection_path(@selection) %> |
19
- <%= link_to 'Back', selections_path %>
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <p>
4
+ <strong>Label:</strong>
5
+ <%= @selection.label %>
6
+ </p>
7
+
8
+ <p>
9
+ <strong>Reference:</strong>
10
+ <%= @selection.reference %>
11
+ </p>
12
+
13
+ <p>
14
+ <strong>Apidae:</strong>
15
+ <%= @selection.apidae_id %>
16
+ </p>
17
+
18
+ <%= link_to 'Edit', edit_selection_path(@selection) %> |
19
+ <%= link_to 'Back', selections_path %>
@@ -1,14 +1,14 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Apidae</title>
5
- <%= stylesheet_link_tag "apidae/application", media: "all" %>
6
- <%= javascript_include_tag "apidae/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Apidae</title>
5
+ <%= stylesheet_link_tag "apidae/application", media: "all" %>
6
+ <%= javascript_include_tag "apidae/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -1,7 +1,7 @@
1
- fr:
2
- apidae:
3
- file_import:
4
- status:
5
- pending: En cours
6
- complete: Terminé
1
+ fr:
2
+ apidae:
3
+ file_import:
4
+ status:
5
+ pending: En cours
6
+ complete: Terminé
7
7
  cancelled: Annulé
@@ -1,14 +1,14 @@
1
- Apidae::Engine.routes.draw do
2
-
3
- resources :objects, only: [:index, :show], path: 'objets'
4
- resources :selections, only: [:index] do
5
- resources :objects, only: [:index], path: 'objets'
6
- end
7
- resources :references, only: [:index]
8
- resources :projects, only: [:index, :edit, :update], path: 'projets'
9
-
10
- match 'import/callback', via: :post, to: 'import#callback'
11
- match 'import/run', via: :post, to: 'import#run'
12
-
13
- root to: 'dashboard#index'
14
- end
1
+ Apidae::Engine.routes.draw do
2
+
3
+ resources :objects, only: [:index, :show], path: 'objets'
4
+ resources :selections, only: [:index] do
5
+ resources :objects, only: [:index], path: 'objets'
6
+ end
7
+ resources :references, only: [:index]
8
+ resources :projects, only: [:index, :edit, :update], path: 'projets'
9
+
10
+ match 'import/callback', via: :post, to: 'import#callback'
11
+ match 'import/run', via: :post, to: 'import#run'
12
+
13
+ root to: 'dashboard#index'
14
+ end