Allow trace descriptions and tags to be edited.
This commit is contained in:
parent
56500280d4
commit
868ce8d467
4 changed files with 65 additions and 0 deletions
43
app/views/trace/edit.rhtml
Normal file
43
app/views/trace/edit.rhtml
Normal file
|
@ -0,0 +1,43 @@
|
|||
<h2><%= @title %></h2>
|
||||
|
||||
<img src="<%= url_for :controller => 'trace', :action => 'picture', :id => @trace.id, :display_name => @trace.user.display_name %>">
|
||||
|
||||
<% form_for :trace, @trace do |f| %>
|
||||
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td>Filename:</td>
|
||||
<td><%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Uploaded at:</td>
|
||||
<td><%= @trace.timestamp %></td>
|
||||
</tr>
|
||||
<% if @trace.inserted? %>
|
||||
<tr>
|
||||
<td>Points:</td>
|
||||
<td><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %></td></tr>
|
||||
<tr>
|
||||
<td>Start coordinate:</td>
|
||||
<td><div class="geo" style="display: inline"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to 'edit', :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>)</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
<tr>
|
||||
<td>Owner:</td>
|
||||
<td><%= link_to @trace.user.display_name, {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Description:</td>
|
||||
<td><%= f.text_field :description %></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tags:</td>
|
||||
<td><%= f.text_field :tagstring %></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br /><br />
|
||||
|
||||
<%= submit_tag 'Save Changes' %>
|
||||
|
||||
<% end %>
|
|
@ -50,6 +50,9 @@
|
|||
<td><%= button_to 'Make this track public permanently', :controller => 'trace', :action => 'make_public', :id => @trace.id %></td>
|
||||
<% end %>
|
||||
<% if @trace.user.id == @user.id %>
|
||||
<td><%= button_to 'Edit this track', :controller => 'trace', :action => 'edit', :id => @trace.id %></td>
|
||||
<% end %>
|
||||
<% if @trace.user.id == @user.id %>
|
||||
<td><%= button_to 'Delete this track', :controller => 'trace', :action => 'delete', :id => @trace.id %></td>
|
||||
<% end %>
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue