Show More
Commit Description:
[web] more use of utc time...
Commit Description:
[web] more use of utc time
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@248 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
app/views/sites/index.html.erb
| 24 lines
| 513 B
| text/plain
| TextLexer
|
|
r85 | <h1>Listing sites</h1> | ||
<table> | ||||
<tr> | ||||
<th>Name</th> | ||||
<th>Started</th> | ||||
<th>Start time</th> | ||||
</tr> | ||||
<% for site in @sites %> | ||||
<tr> | ||||
<td><%=h site.name %></td> | ||||
<td><%=h site.started %></td> | ||||
<td><%=h site.start_time %></td> | ||||
<td><%= link_to 'Show', site %></td> | ||||
<td><%= link_to 'Edit', edit_site_path(site) %></td> | ||||
<td><%= link_to 'Destroy', site, :confirm => 'Are you sure?', :method => :delete %></td> | ||||
</tr> | ||||
<% end %> | ||||
</table> | ||||
<br /> | ||||
<%= link_to 'New site', new_site_path %> | ||||