{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Notally ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block head %} {{ block.super }} {% endblock %} {% block menu %} {% include 'orgapy/partials/menu_notes.html' %} {{ block.super }} {% endblock menu %} {% block main_content %} {% if notes %} Imported {{ notes|length }} note{{ notes|length|pluralize }}.
{% for note in notes %} {% include 'orgapy/partials/note_list_item.html' %} {% endfor %}
{% else %}

Import Notally Backup

In Notally, go to Settings, then Export Backup. This create a ZIP archive you can upload here. Behind the scene, the archive contains a SQLite database.

Select File

Select Notes

{% csrf_token %}
{% endif %} {% endblock main_content %}