Sha256: a951c607f4884d02c139db48e7f314a78515e326be053ae0ac385aea25d67e18

Contents?: true

Size: 1.9 KB

Versions: 4

Compression:

Stored size: 1.9 KB

Contents

<div class="table-responsive"> 
	<table class="table table-hover members-table middle-align">
	  <thead> 
			<tr> 
				<th style="text-align: center;width:60px">#</th> 
				<th>UUID</th>
				<th>Status</th>
				<th>Device Name</th>
				<th>Device Type</th>
				<% if display_delete_links? %>
				<th style="text-align: center;">Actions</th> 
				<% end %>
			</tr>  
		</thead>
		
	  <tbody>
	  	<% @devices.each_with_index do |device, i| %>
	  			
	  		<tr id="tr_device_<%= device.id %>">
		      
		      <th scope="row" style="text-align: center;">
						<% if i < 0 %>
							<i class="fa fa-check text-success"></i>
						<% else %>
							<%= i + 1 + (@per_page.to_i * (@current_page.to_i - 1)) %>
						<% end %>
					</th>

					<td class="device-name" style="font-weight:bold;"><%= link_to device.uuid, registration_device_path(registration_id: device.registration_id, id: device.id), remote: true %></td>
					<td>
						<% if device.pending? %>
							<span class="ml-5 mt-5 label label-default">Pending</span>
						<% elsif device.verified? %>
							<span class="ml-5 mt-5 label label-success">Verified</span>
						<% elsif device.blocked? %>
							<span class="ml-5 mt-5 label label-danger">Blocked</span>
						<% end %>
					</td>

					<td class="device-name"><%= device.device_name %></td>
					<td class="device-name"><%= device.device_type %></td>
					
					<% if display_delete_links? %>
					<% delete_link = registration_device_path(@registration, device) %>
					<td class="action-links" style="width:10%">

		      	<%= link_to raw("<i class=\"linecons-trash\"></i> Remove Role"), delete_link, method: :delete, device: "menuitem", tabindex: "-1", data: { confirm: 'Are you sure?' }, :remote=>true, class: "delete" %>

		      </td>
		      <% end %>

		    </tr>
		    
		  <% end %>
	  </tbody>
	</table>
</div>

<div class="row">
  <div class="col-sm-12">
    <%= paginate_kuppayam(@devices) %>
  </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
usman-0.3.38 app/views/usman/registration_devices/_index.html.erb
usman-0.3.37 app/views/usman/registration_devices/_index.html.erb
usman-0.3.36 app/views/usman/registration_devices/_index.html.erb
usman-0.3.35 app/views/usman/registration_devices/_index.html.erb