Created
July 9, 2013 17:22
-
-
Save TXDynamics/5959308 to your computer and use it in GitHub Desktop.
Abase Default Table Style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row-fluid"> | |
<div class="span12"> | |
<table id="table_bug_report" class="table table-striped table-bordered table-hover"> | |
<thead> | |
<tr> | |
<th>Account Name</th> | |
<th>Contact Name</th> | |
<th>Contact Email</th> | |
<th></th> | |
</tr> | |
</thead> | |
<tbody> | |
<% @members.each do |member| %> | |
<tr> | |
<td style="font-size: 11px;"><%= Contact.return_account(member.contactid) %></td> | |
<td style="font-size: 11px;"><%= Contact.return_full_name(member.contactid) %></td> | |
<td style="font-size: 11px;"><%= Contact.return_email(member.contactid) %></td> | |
<td> | |
<div class="inline position-relative"> | |
<button class="btn btn-minier btn-primary dropdown-toggle" data-toggle="dropdown"><i class="icon-cog icon-only"></i></button> | |
<ul class="dropdown-menu dropdown-icon-only dropdown-light pull-right dropdown-caret dropdown-close"> | |
<li><a href="#" class="tooltip-success" data-rel="tooltip" title="Edit" data-placement="left"><span class="green"><i class="icon-edit"></i></span></a></li> | |
<li><a href="#" class="tooltip-warning" data-rel="tooltip" title="Flag" data-placement="left"><span class="blue"><i class="icon-flag"></i></span> </a></li> | |
<li><a href="#" class="tooltip-error" data-rel="tooltip" title="Delete" data-placement="left"><span class="red"><i class="icon-trash"></i></span> </a></li> | |
</ul> | |
</div> | |
</td> | |
</tr> | |
<% end %> | |
</tbody> | |
</table> | |
<!--Kaminari Pagination--> | |
<div class="row pull-right"><%= paginate @members %></div> | |
</div><!--/span--> | |
</div><!--/row--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment