{% set active_page = "libraries" %} {% extends "base.html" %} {% block title %}Libraries{% endblock %} {% block content %} {% if libraries %} {% set max_syms = libraries|map(attribute='symbols')|max if libraries else 1 %}
{% for lib in libraries %}
{{ lib.name }} {{ lib.manager }}
v{{ lib.version }} {{ "{:,}".format(lib.symbols) }}
{% if lib.repo_url %} {% endif %}
{% endfor %}
{% else %}
No libraries indexed yet
Use sylvan library add pip/package@version to index a library
{% endif %} {% endblock %}