{{ header }}{{ column_left }}
<div id="content">
    <div class="page-header">
        <div class="container-fluid">
            <div class="pull-right"><a href="{{ insert }}" data-toggle="tooltip" title="{{ button_add }}" class="btn btn-primary"><i class="fa fa-plus"></i></a>
                <button type="button" data-toggle="tooltip" title="{{ button_delete }}" class="btn btn-danger" onclick="confirm('{{ text_confirm }}') ? $('#form-information').submit() : false;"><i class="fa fa-trash-o"></i></button>
            </div>
            <h1>{{ heading_title }}</h1>
             <ul class="breadcrumb">
				{% for breadcrumb in breadcrumbs %}
				<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
				{% endfor %}
			  </ul>
        </div>
    </div>
  <div class="container-fluid">
    {% if error_warning %}
    <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
    {% endif %}
    <div class="panel panel-default">
      <div class="panel-heading">
        <h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
      </div>
      <div class="panel-body">
        <form action="{{ delete }}" method="post" enctype="multipart/form-data" id="form-information">
			<div class="table-responsive">
				<table class="table table-bordered table-hover">
					<thead>
					<tr>
						<td style="width: 1px;" class="text-center"><input type="checkbox" onclick="$('input[name*=\'selected\']').prop('checked', this.checked);" /></td>
						<td class="text-left">{{ entry_name }}</td>
						<td class="text-right">{{ column_sort_order }}</td>
						<td class="text-right">{{ column_status }}</td>
						<td class="text-right">{{ column_action }}</td>
					</tr>
					</thead>
					<tbody>
					{% if testimonials %}
							{% for testimonial in testimonials %}
					<tr>
						<td class="text-center">	{% if testimonial['selected'] %}
							<input type="checkbox" name="selected[]" value="{{ testimonial['testimonial_id'] }}" checked="checked" />
							{% else %}
							<input type="checkbox" name="selected[]" value="{{ testimonial['testimonial_id'] }}" />
							{% endif %}</td>
						<td class="text-left">{{ testimonial['customer_name'] }}</td>
						<td class="text-left">{{ testimonial['title'] }}</td>
						<td class="text-right">{{ testimonial['sort_order'] }}</td>
						<td class="text-right">{{ testimonial['status'] }}</td>

						<td class="text-right">{% for action in testimonial['action'] %}
							 <a href="{{ action['href'] }}">{{ action['text'] }}</a>
							{% endfor %}</td>
					</tr>
					{% endfor %}
					{% else %}
					<tr>
						<td class="text-center" colspan="4">{{ text_no_results }}</td>
					</tr>
					{% endif %}

					</tbody>
				</table>
			</div>
		</form>
      </div>
    </div>
  </div>
</div>
{{ footer }}