aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/companies/show.html.erb8
-rw-r--r--app/views/networks/show.html.erb8
-rw-r--r--app/views/stop_areas/show.html.erb2
-rw-r--r--app/views/time_tables/show.html.erb8
4 files changed, 19 insertions, 7 deletions
diff --git a/app/views/companies/show.html.erb b/app/views/companies/show.html.erb
index 09a54e98b..16d104969 100644
--- a/app/views/companies/show.html.erb
+++ b/app/views/companies/show.html.erb
@@ -43,6 +43,14 @@
<label><%= Chouette::Company.human_attribute_name("objectid") %>: </label>
<%= @company.objectid %>
</p>
+ <p>
+ <label><%= @company.human_attribute_name("creation_time") %>: </label>
+ <%= @company.creation_time %>
+ </p>
+ <p>
+ <label><%= @company.human_attribute_name("creator_id") %>: </label>
+ <%= @company.creator_id %>
+ </p>
</div>
</div>
diff --git a/app/views/networks/show.html.erb b/app/views/networks/show.html.erb
index e33ecbcf9..6822cf41e 100644
--- a/app/views/networks/show.html.erb
+++ b/app/views/networks/show.html.erb
@@ -35,6 +35,14 @@
<label><%= Chouette::Network.human_attribute_name("objectid") %>: </label>
<%= @network.objectid %>
</p>
+ <p>
+ <label><%= @network.human_attribute_name("creation_time") %>: </label>
+ <%= @network.creation_time %>
+ </p>
+ <p>
+ <label><%= @network.human_attribute_name("creator_id") %>: </label>
+ <%= @network.creator_id %>
+ </p>
</div>
</div>
diff --git a/app/views/stop_areas/show.html.erb b/app/views/stop_areas/show.html.erb
index 27ce46880..108a69a2b 100644
--- a/app/views/stop_areas/show.html.erb
+++ b/app/views/stop_areas/show.html.erb
@@ -35,7 +35,7 @@
<label><%= @stop_area.human_attribute_name("type") %>: </label>
<%= t("area_types.label.#{@stop_area.type}") %>
</p>
- <p><%= t('stop_areas.show.geographic_data') %></p>
+ <p> <label><%= t('stop_areas.show.geographic_data') %> </label></p>
<% if @stop_area.projectiontype == nil && @stop_area.longlattype == nil %>
<span class='geo_data'><%= t('stop_areas.show.no_geographic_data') %></span>
<% else %>
diff --git a/app/views/time_tables/show.html.erb b/app/views/time_tables/show.html.erb
index d556d88e7..5fe52a3af 100644
--- a/app/views/time_tables/show.html.erb
+++ b/app/views/time_tables/show.html.erb
@@ -94,20 +94,16 @@
</p>
- </div>
- <div>
<p>
<label><%= @time_table.human_attribute_name("periods") %>: </label>
</p>
<%= render :partial => "period", :collection => @time_table.periods %>
- </div>
- <div>
+
<p>
<label><%= @time_table.human_attribute_name("dates") %>: </label>
</p>
<%= render :partial => "date", :collection => @time_table.dates %>
- </div>
- <div>
+
<p>
<label><%= @time_table.human_attribute_name("objectid") %>: </label>
<%= @time_table.objectid %>