{% extends "base.html" %} {% block title %}Notes - Network Management{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
All Notes Site Device KB Incident Maintenance
{% if notes %}
{% for note in notes %} {% endfor %}
Title Type Preview Tags Updated
{{ note.title }} {{ note.note_type|title }} {{ note.content|striptags|truncate(100) }}
{% if note.tags %} {% set tags = note.tags|from_json %} {% for tag in tags[:3] %} {{ tag }} {% endfor %} {% if tags|length > 3 %} +{{ tags|length - 3 }} {% endif %} {% endif %}
{{ note.updated_at[:10] }}
{% if total > per_page %} {% endif %}
{% else %}

No notes found

{% if request.args.get('type') %} No notes of type "{{ request.args.get('type') }}" yet. {% else %} Create your first note to get started. {% endif %}

Create Note
{% endif %} {% endblock %}