Page MenuHomeGRNET

index.html.erb
No OneTemporary

File Metadata

Created
Fri, Aug 8, 11:34 PM

index.html.erb

<div class="row right">
<%= link_to new_admin_faq_path, class: "btn btn-default", role: "button" do %>
<label class="glyphicon glyphicon-plus text-primary"></label>
New FAQ
<% end %>
</div>
<h3>FAQ</h3>
<br />
<div class="row">
<div class="col-xs-12">
<div class="table-responsive">
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>Priority</th>
<th class="col-xs-2">Title</th>
<th class="col-xs-7">Body</th>
<th>Created at</th>
<th>Updated at</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<%= render partial: 'faq', collection: @faqs %>
</tbody>
</table>
</div>
</div>
</div>

Event Timeline