Rename views to rails 2 style names.
This commit is contained in:
parent
a8c7d1c4ce
commit
2e2f212472
91 changed files with 2 additions and 6 deletions
14
app/views/changeset/_changesets.html.erb
Normal file
14
app/views/changeset/_changesets.html.erb
Normal file
|
@ -0,0 +1,14 @@
|
|||
<% showusername = true if showusername.nil? %>
|
||||
<table id="changeset_list" cellpadding="3">
|
||||
<tr>
|
||||
<th><%= t'changeset.changesets.id' %></th>
|
||||
<th><%= t'changeset.changesets.saved_at' %></th>
|
||||
<% if showusername %>
|
||||
<th><%= t'changeset.changesets.user' %></th>
|
||||
<% end %>
|
||||
<th><%= t'changeset.changesets.comment' %></th>
|
||||
<th><%= t'changeset.changesets.area' %></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
<%= render :partial => 'changeset', :locals => {:showusername => showusername}, :collection => @edits unless @edits.nil? %>
|
||||
</table>
|
Loading…
Add table
Add a link
Reference in a new issue