aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorMichel Etienne2012-05-09 00:06:42 +0200
committerMichel Etienne2012-05-09 00:06:42 +0200
commitf95383a7fbc557f07765bc4cb3206a8b3e31bcb3 (patch)
tree0984784a46c627cfcf9d375a4c7b4d32ecd252d6 /app
parent71ce6186539670f108624949acdfcac79f74303f (diff)
downloadchouette-core-f95383a7fbc557f07765bc4cb3206a8b3e31bcb3.tar.bz2
update help index
Diffstat (limited to 'app')
-rw-r--r--app/views/help/index.textile5
-rw-r--r--app/views/time_tables/_date_fields.erb2
-rw-r--r--app/views/time_tables/_form.erb2
-rw-r--r--app/views/time_tables/_period_fields.erb2
4 files changed, 8 insertions, 3 deletions
diff --git a/app/views/help/index.textile b/app/views/help/index.textile
index c793ff0f6..71183524f 100644
--- a/app/views/help/index.textile
+++ b/app/views/help/index.textile
@@ -10,10 +10,11 @@ Cette itération présente les formulaires de :
* réseaux
* transporteurs
* lignes
+** séquences d'arrêts
* arrêts
* calendriers d'application
* correspondances
-* séquences d'arrêts
+* import Neptune (actuellement uniquement lors de la création d'un espace de donné)
l'avancement actuel permet de :
@@ -21,12 +22,12 @@ l'avancement actuel permet de :
* consulter les cartes
* déplacer un arrêt depuis la carte (voir mode opératoire dans l'aide des arrêts)
* associer les arrêts à leurs parents
+* ajouter des fils à un arrêt
les action suivantes ne sont pas encore disponible :
* afficher le fond Géoportail
* ajouter ou supprimer des dates et des périodes aux calendriers
* associer des arrêts à une séquences d'arrêts
-* ajouter des fils à un arrêt
* associer une ITL à une ligne
diff --git a/app/views/time_tables/_date_fields.erb b/app/views/time_tables/_date_fields.erb
index 7ecc58fc5..7ec895b44 100644
--- a/app/views/time_tables/_date_fields.erb
+++ b/app/views/time_tables/_date_fields.erb
@@ -1,6 +1,8 @@
<div class='nested-fields'>
<%= f.inputs :class => 'dates' do %>
<%= f.input :date, :as => :date , :label => @time_table.human_attribute_name("date")%>
+ <%= f.input :time_table_id, :as => :hidden %>
+ <%= f.input :position, :as => :hidden %>
<%= link_to_remove_association t('actions.destroy'), f %>
<% end %>
</div> \ No newline at end of file
diff --git a/app/views/time_tables/_form.erb b/app/views/time_tables/_form.erb
index 777dd9c18..f91b119fd 100644
--- a/app/views/time_tables/_form.erb
+++ b/app/views/time_tables/_form.erb
@@ -23,7 +23,7 @@
</li>
<% end %>
<% end %>
-<!--
+ <!--
<div id='periods'>
<label><%= @time_table.human_attribute_name("periods") %>: </label>
<%= form.semantic_fields_for :periods do |period| %>
diff --git a/app/views/time_tables/_period_fields.erb b/app/views/time_tables/_period_fields.erb
index 8c42d8264..76bb506f9 100644
--- a/app/views/time_tables/_period_fields.erb
+++ b/app/views/time_tables/_period_fields.erb
@@ -2,6 +2,8 @@
<%= f.inputs :class => 'periods' do %>
<%= f.input :period_start, :as => :date , :label => @time_table.human_attribute_name("period_start")%>
<%= f.input :period_end, :as => :date , :label => @time_table.human_attribute_name("period_end")%>
+ <%= f.input :time_table_id, :as => :hidden %>
+ <%= f.input :position, :as => :hidden %>
<%= link_to_remove_association t('actions.destroy'), f %>
<% end %>
</div>