{% extends "base.html" %} {% block title %}LineageOS Kernel Tracker - Logs{% endblock %} {% block content %}
Logs {% if title %}for {{ title }}{% endif %}
{%- if logs %} {%- for l in logs %} {%- endfor %}
Date User Action Result
{{ l.dateAndTime.strftime('%b %d, %Y %H:%m') }} {{ l.user }} {%- if l.action in logTranslations %} {{- logTranslations[l.action] -}} {%- else %} {{- l.action -}} {%- endif -%} {{ l.result }}
{% if pages %}
Pages:  {%- for c in range(pages) %} {{ c+1 }}  {%- endfor %} {%- endif %} {%- else %} No logs so far! {%- endif %}
{% endblock %}