Sha256: 50e76027493fca7affa501e2a2c94568bcc8957385392925fa22ddc524d00936

Contents?: true

Size: 1.39 KB

Versions: 5

Compression:

Stored size: 1.39 KB

Contents

<% electives_section.render do %>
  <section id="electives-section" class="certification-content">
    <h2><%= t 'woople_theme.dashboards.member.electives_section.title' %></h2>
    <ul class="nav nav-tabs" id="electives_tab_nav">
      <% electives_section.render_history do %>
        <li><a href="#electives_history" data-toggle="tab"><%= t 'woople_theme.dashboards.member.electives_section.history_tab_name' %></a></li>
      <% end %>
      <% electives_section.render_exceptions do %>
        <li><a href="#electives_exceptions" data-toggle="tab"><%= t 'woople_theme.dashboards.member.exceptions.title' %></a></li>
      <% end %>
    </ul>
    <div class="tab-content">
    <% electives_section.render_history do %>
      <div class="tab-pane" id="electives_history">
        <%= electives_history(electives_section.electives_history) %>
      </div>
    <% end %>
    <% electives_section.render_exceptions do %>
      <div class="tab-pane" id="electives_exceptions">
        <table class="table">
          <thead>
            <tr>
              <th><%= t 'woople_theme.date_title' %></th>
              <th><%= t 'woople_theme.dashboards.member.electives_section.reason_points' %></th>
            </tr>
          </thead>
          <tbody>
            <%= electives_exceptions(electives_section.electives_exceptions) %>
          </tbody>
        </table>
      </div>
    <% end %>
    </div>
  </section>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
woople-theme-0.5.13 app/views/dashboard/_electives_section.html.erb
woople-theme-0.5.12 app/views/dashboard/_electives_section.html.erb
woople-theme-0.5.11 app/views/dashboard/_electives_section.html.erb
woople-theme-0.5.10 app/views/dashboard/_electives_section.html.erb
woople-theme-0.5.9 app/views/dashboard/_electives_section.html.erb