Sha256: 5930610519b3adb41d5c3761ab12064ea8fe3c757d436043bef1a7ba1e7e8a50

Contents?: true

Size: 1.89 KB

Versions: 11

Compression:

Stored size: 1.89 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=\"fa-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

11 entries across 11 versions & 1 rubygems

Version Path
usman-0.4.10.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.9.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.8.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.7.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.6.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.5.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.4.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.3.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.2.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.1.pre.materialize app/views/usman/registration_devices/_index.html.erb
usman-0.4.0.pre.materialize app/views/usman/registration_devices/_index.html.erb