Sha256: c8b46fe1104b5b6bd3321c18f6371054fb1bb77dbc61a4234f0dc0cf1ac47ddb

Contents?: true

Size: 944 Bytes

Versions: 5

Compression:

Stored size: 944 Bytes

Contents

<% provide :page_header do %>
  <h2>What are you uploading?</h2>
  <p>Before we can begin we need to know a little about what you're uploading.</p>
<% end %>


<div class="row">
  <ul class="classify-work">
    <% classify_concern.all_curation_concern_classes.each do |klass| %>
      <% if can? :create, klass %>
        <li class="work-type">
          <h3 class="title"><%= klass.human_readable_type %></h3>
          <p class="short-description"><%= klass.human_readable_short_description %></p>
          <%= link_to 'Add New',
            main_app.new_polymorphic_path([:curation_concern, klass]),
            class: "add-button btn btn-primary #{dom_class(klass, 'add_new')}"
          %>
        </li>
      <% end %>
    <% end %>
    <li class="work-type placeholder" aria-hidden="true"></li>
    <li class="work-type placeholder" aria-hidden="true"></li>
    <li class="work-type placeholder" aria-hidden="true"></li>
  </ul>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
worthwhile-0.1.2 app/views/worthwhile/classify_concerns/new.html.erb
worthwhile-0.1.1 app/views/worthwhile/classify_concerns/new.html.erb
worthwhile-0.1.0 app/views/worthwhile/classify_concerns/new.html.erb
worthwhile-0.0.3 app/views/worthwhile/classify_concerns/new.html.erb
worthwhile-0.0.2 app/views/worthwhile/classify_concerns/new.html.erb