Sha256: 6affdf885d4c4b8b7570c5c07e3af9a8f8e3e5e7a44f941cf139799a5d6b45e1

Contents?: true

Size: 928 Bytes

Versions: 3

Compression:

Stored size: 928 Bytes

Contents

<legend>Recent Clips</legend>
<div class="span7 offset2">

    <table class="table table-striped table-bordered table-hover span6">
        <thead>
            <tr>
                <th>
                    Title
                </th>
                <th>
                    Language
                </th>
                <th>
                    Created On
                </th>
            </tr>
        </thead>
        <tbody>
            <% @clips.each do |clip| %>
            <tr>
                <td><%= link_to clip.title, clip %></td>
                <td><%= clip.language %></td>
                <td><%= l clip.created_at, :format => :short %></td>
            </tr>
            <% end %>
            <% unless @clips.length > 0 %>
            <tr>
                <td colspan="3" style="text-align: center;">There are no public clips.</td>
            </tr>
            <% end %>
        </tbody>
    </table>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
clipster-0.1.2 app/views/clipster/clips/list.html.erb
clipster-0.1.1 app/views/clipster/clips/list.html.erb
clipster-0.1.0 app/views/clipster/clips/list.html.erb