Sha256: 2a8e5bb29e4e2240b19a14d7537466b6d7c7bf6894743aa34b24a098a8f64cb9
Contents?: true
Size: 980 Bytes
Versions: 12
Compression:
Stored size: 980 Bytes
Contents
<div class="wrapper"> <section> <%= link_to "Create new api client", new_api_client_path, class: 'btn'%> </section> </div> <div class="wrapper"> <section> <ul class="task-list"> <% @api_clients.each do |api_client|%> <li> <p> <%= link_to api_client.name, api_client_path(api_client) %> created by <%= api_client.creator.name %> on <%= api_client.created_at%> </p> </li> <% end %> </ul> </section> </div> <div class="wrapper"> <section class="pagination"> <% if params[:since].present? %> <%= link_to 'Start', @links[:first], class: 'header__btn btn' %> <% else %> <%= link_to 'Start', '', class: 'header__btn btn btn--disabled disabled' %> <% end %> <% if url = @links[:next] %> <%= link_to 'Older', url, class: 'header__btn btn' %> <% else %> <%= link_to 'Older', '', class: 'header__btn btn btn--disabled disabled' %> <% end %> </section> </div>
Version data entries
12 entries across 12 versions & 1 rubygems