Commit dad09731e2ed6b13a746a553b40bbcfa0ac502de

remove "created at" row from repos list in projects#show

Commit diff

app/views/projects/show.html.erb

 
44
55<ul class="infobox">
66 <li><strong>Owner:</strong> <%= link_to h(@project.user.login), user_path(@project.user) -%></li>
7 <li><strong>Created:</strong> <%= @project.created_at.to_s(:short) -%></li>
78 <li><strong>Labels:</strong>
89 <%= @project.tag_list.blank? ? "none" : linked_tag_list_as_sentence(@project.tags) -%></li>
910 <li><strong>License:</strong> <%= h(@project.license) -%></li>
2727 <thead>
2828 <th>Name</th>
2929 <th>Owner</th>
30 <th>Created</th>
3130 <th>Last Commit</th>
3231 <th></th>
3332 </thead>
4040 <%= h(@project.slug) -%> (<%= link_to h(repos.user.login), user_path(repos.user) -%>)
4141 </td>
4242 <td>
43 <%= repos.created_at.to_s(:short) -%>
44 </td>
45 <td>
4643 <%= repos.last_commit ? repos.last_commit.author.date.to_s(:short) : "<em>none</em>" -%>
4744 </td>
4845 <td><%= link_to "browse", project_repository_browse_path(@project, repos) -%></td>
5353 <%= link_to h(repos.user.login), user_path(repos.user) -%>
5454 </td>
5555 <td>
56 <%= repos.created_at.to_s(:short) -%>
57 </td>
58 <td>
5956 <%= repos.last_commit ? repos.last_commit.author.date.to_s(:short) : "<em>none</em>" -%>
6057 </td>
6158 <td><%= link_to "browse", project_repository_browse_path(@project, repos) -%></td>
toggle raw diff