{% extends "layout.html" %} {% set active_page = "notes" %} {% set help_page = ["https://kizniche.github.io/Mycodo/Notes", _('Notes')] %} {% block title %} - {{_('Notes')}}{% endblock %} {% block body %}
Tags allow categorization of notes. Each note may have one or more tags. A tag may be selected to display all the notes associated with it on a graph.
Leave all fields empty and click Show Notes to see all notes.
Filter Tags: Enter one or more tags, separated by commas, to view the notes with those tags.
Filter Notes: Search using "*" as a wildcard (e.g. "*tem*" will return all notes with 'temp' and 'temperature' in the note).
{{_('Found')}}: {{number_displayed_notes[0]}}/{{number_displayed_notes[1]}}
ID | Time, Name (Tags) | Files | Note | |
{{each_note.id}} |
{{utc_to_local_time(each_note.date_time)}}
{{each_note.name}} ({% for each_tag in each_note.tags.split(',') %}{{get_note_tag_from_unique_id(each_tag)}}{% if not loop.last %}, {% endif %}{% endfor %}) |
{%- if each_note.files -%} {%- for each_file in each_note.files.split(',') -%} {{each_file[37:]}}{% if not loop.last %}, {% endif -%} {%- endfor -%} {%- endif -%} | {{each_note.note}} |
No notes to display
{% endif %}