<h6 class="card-title">
	{{ strings.title }}
	<span class="badge bg-info">{{ vars.total_logs }}</span>
</h6>
{% if vars.total_logs <1 %}
	<div class="alert-info alert">{{ strings.no_logs }}</div>
{% else %}
	<div class="overflow_container">
		<table class="table">
			<thead class="thead-light">
			<tr>
				<th scope="col">{{ strings.username }}</th>
				<th scope="col">{{ strings.event }}</th>
				<th scope="col">{{ strings.created_at }}</th>
			</tr>
			</thead>
			<tbody>
			{% for log in vars.logs %}
				<tr>
					<td>
						<span>{{ log.user }}</span>
					</td>
					<td class="w-50">{{ log.event }}</td>
					<td>
						{{ log.created_at_ago }}
						<div class="timestamp-small">{{ log.created_at }}</div>
					</td>
				</tr>
			{% endfor %}
			</tbody>
		</table>
	</div>
{% endif %}