def list_unclassified_tags(request):

    tags = get_dao_tags_collections().get_unclassified_tags()
    generate_flare()


    return render(request, 'list_unclassified_tags.html', {'unclassified_tags': tags})
def list_collections(request):

    collections = get_dao_tags_collections().get_all_collection()
    generate_flare()

    return render(request, 'list_collections.html', {'collections': collections})