asset-library.underscore 1.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<div class="asset-library">

    <div id="asset-paging-header"></div>

    <table>
        <caption class="sr"><%= gettext("List of uploaded files and assets in this course") %></caption>
        <colgroup>
            <col class="thumb-cols" />
            <col class="name-cols" />
            <col class="date-cols" />
            <col class="embed-cols" />
            <col class="actions-cols" />
        </colgroup>
        <thead>
        <tr>
            <th class="thumb-col"><%= gettext("Preview") %></th>
17 18
            <th class="name-col sortable-column"><span class="column-sort-link" id="js-asset-name-col"><%= gettext("Name") %></span></th>
            <th class="date-col sortable-column"><span class="column-sort-link" id="js-asset-date-col"><%= gettext("Date Added") %></span></th>
19 20
            <th class="embed-col"><%= gettext("Embed URL") %></th>
            <th class="embed-col"><%= gettext("External URL") %></th>
21 22 23 24 25 26 27 28 29 30 31 32 33
            <th class="actions-col"><span class="sr"><%= gettext("Actions") %></span></th>
        </tr>
        </thead>

        <tbody id="asset-table-body" ></tbody>
    </table>

    <div id="asset-paging-footer"></div>

</div>
<div class="no-asset-content">
    <p><%= gettext("You haven't added any assets to this course yet.") %> <a href="#" class="button upload-button new-button"><i class="icon-plus"></i><%= gettext("Upload your first asset") %></a></p>
</div>