Sha256: c7ce53817ec692d93a3148d3f820ceeda1f1b43d15b93ba80dd0fe1c141f6fdb

Contents?: true

Size: 591 Bytes

Versions: 1

Compression:

Stored size: 591 Bytes

Contents

<table>
  <thead>
    <tr>
      <td></td>
      <% @lineup.times.each do |t| %>
        <th class="guide-time">
          <%= t.strftime '%l:%M' %>
        </th>
      <% end %>
    </tr>
  </thead>
  <tbody>
    <% @lineup[:channels].each do |ch| %>
      <tr>
        <th class="guide-channel">
          <%= link_to ch[:channel], channel_path(ch[:channel]) %>
        </th>
        <% ch[:schedule].each do |sch| %>
          <td class="guide-program">
            <%= sch[:program].program_name.titleize %>
          </td>
        <% end %>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
network_executive-0.0.4 app/views/network_executive/lineup/index.html.erb