Sha256: af9d105aec5fa901c8a291a5bc2dd9a77d27660d0f9a09c958a966f72ea4c5db

Contents?: true

Size: 1.4 KB

Versions: 13

Compression:

Stored size: 1.4 KB

Contents

<div class="container" %>
  <div class="row" %>
    <div class="col col-lg-3 col-md-3 col-sm-3">

    <!-- Allow for filtering by repository or user -->
      <div class="form-group">
        <input class="select2-control" id="repos">
        </input>
      </div>
      <div class="form-group">
        <input class="select2-control" id="users">
        </input>
      </div>
    </div>

    <div class="col col-lg-9 col-md-9 col-sm-9">
      <!-- Allow viewing deploys by newest first or oldest first -->
      <div id="sort-group" class="btn-group" data-toggle="buttons">
        <label class="btn btn-default" id="desc">
          <input type="radio" name="sort"> Newest
        </label>
        <label class="btn btn-default" id="asc">
          <input type="radio" name="sort"> Oldest
        </label>
      </div>

      <!-- Allow to group by repository and user -->
      <select id="group-by" class="form-control pull-right" style="width: 100px; display: inline; ">
        <option value="">Group By</option>
        <option value="user">User</option>
        <option value="repo">Repo</option>
      </select>

      <!-- Show all of the deploys -->
      <%= render 'hubstats/tables/grouped_deploys' %>

      <!--Contains the pagination so that only 15 deploys show per page-->
      <div class="text-center">
        <%= will_paginate @deploy, renderer: BootstrapPagination::Rails %>
      </div>
    </div>
  </div>
</div>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
hubstats-0.3.17 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.16 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.15 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.14 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.13 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.12 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.11 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.10 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.9 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.8 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.7 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.6 app/views/hubstats/deploys/index.html.erb
hubstats-0.3.5 app/views/hubstats/deploys/index.html.erb