{% extends "bukuserver/home.html" %}
{% import 'bukuserver/lib.html' as buku with context %}
{% block head %}
{{ super() }}
{{ buku.close_if_popup() }}
{% endblock %}
{% block body %}
{{ _('Netloc') }}
{% if netlocs %}
{% if netlocs.cropped %}
{% endif %}
{% else %}
{{ _('No bookmarks found.') }}
{% endif %}
{% if netlocs.cropped %}
{{ _('Rank') }} |
{{ _('Netloc') }} |
{{ _('Number') }} |
{% for name, amount in netlocs.all %}
{{ loop.index }} |
{{ name or _('(no netloc)') }}
|
{{ amount }} |
{% endfor %}
{% endif %}
{{ _('Tag') }}
{% if tags %}
{% if tags.cropped %}
{% endif %}
{{ _('Rank') }} |
{{ _('Tag') }} |
{{ _('Number') }} |
{% for item in tags %}
{{ loop.index }} |
{{ item.name }}
|
{{ item.amount }} |
{% endfor %}
{% else %}
{{ _('No tags found.') }}
{% endif %}
{% if tags.cropped %}
{{ _('Rank') }} |
{{ _('Tag') }} |
{{ _('Number') }} |
{% for name, amount in tags.all %}
{{ loop.index }} |
{{ name }} |
{{ amount }} |
{% endfor %}
{% endif %}
{{ _('Title (common)') }}
{% if titles %}
{% if titles.cropped %}
{% endif %}
{% else %}
{{ _('No common titles found.') }}
{% endif %}
{% if titles.cropped %}
{{ _('Rank') }} |
{{ _('Title') }} |
{{ _('Number') }} |
{% for name, amount in titles.all %}
{{ loop.index }} |
{{ name or _('(no title)') }}
|
{{ amount }} |
{% endfor %}
{% endif %}
{% endblock %}
{% block tail %}
{{ super() }}
{{ buku.set_lang() }}
{{ buku.script('Chart.js') }}
{% endblock %}