vidpush/app/views/videolistings/index.html.erb

46 lines
1.3 KiB
Plaintext
Raw Normal View History

2014-04-07 18:41:34 +00:00
<h1>Listing videolistings</h1>
<table>
<thead>
<tr>
<th>Videocode</th>
<th>Producttypeid</th>
<th>Remoteassetsarchive</th>
<th>Voiceoverselection</th>
<th>Musicselection</th>
<th>Clientprovidedscript</th>
<th>Keywords</th>
<th>Focus</th>
<th>Notes</th>
<th>Asseturls</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @videolistings.each do |videolisting| %>
<tr>
<td><%= videolisting.videocode %></td>
<td><%= videolisting.producttypeid %></td>
<td><%= videolisting.remoteassetsarchive %></td>
<td><%= videolisting.voiceoverselection %></td>
<td><%= videolisting.musicselection %></td>
<td><%= videolisting.clientprovidedscript %></td>
<td><%= videolisting.keywords %></td>
<td><%= videolisting.focus %></td>
<td><%= videolisting.notes %></td>
<td><%= videolisting.asseturls %></td>
<td><%= link_to 'Show', videolisting %></td>
<td><%= link_to 'Edit', edit_videolisting_path(videolisting) %></td>
<td><%= link_to 'Destroy', videolisting, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Videolisting', new_videolisting_path %>