]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/user_mailer/_gpx_description.text.erb
Move number of points to file details in gpx emails
[rails.git] / app / views / user_mailer / _gpx_description.text.erb
index 6f7a9784452eba74a58d891591a33e62b1686c2b..e828068b9f1cdb1bab5e83e01746a1e2ad97f10e 100644 (file)
@@ -1,8 +1,22 @@
-<% trace_name = @trace_name %>
-<% trace_description = @trace_description %>
+<%= t ".details" %>
+
+<%= t ".filename" %>
+       <%= @trace_name %>
+<% if @trace_url %>
+<%= t ".url" %>
+       <%= @trace_url %>
+<% end %>
+<%= t ".description" %>
+       <%= @trace_description %>
 <% if @trace_tags.length > 0 %>
-  <% tags = @trace_tags.map { |trace_tag| trace_tag.tag }.join(", ") %>
-  <%= t ".description_with_tags", :trace_name => trace_name, :trace_description => trace_description, :tags => tags %>
-<% else %>
-  <%= t ".description_with_no_tags", :trace_name => trace_name, :trace_description => trace_description %>
+<%= t ".tags" %>
+       <%= @trace_tags.map(&:tag).join(", ") %>
+<% end %>
+<% if @possible_points %>
+<%= t ".total_points" %>
+       <%= @possible_points %>
+<% end %>
+<% if @trace_points %>
+<%= t ".imported_points" %>
+       <%= @trace_points %>
 <% end %>