{% extends "base.html" %} {% from "components/tool_card.html" import tool_card %} {% block title %}{{ publisher.display_name }} (@{{ publisher.slug }}) - SmartTools{% endblock %} {% block meta_description %}{{ publisher.bio or 'SmartTools publisher profile for ' ~ publisher.display_name }}{% endblock %} {% block content %}
{{ publisher.display_name[0]|upper }}

{{ publisher.display_name }}

{% if publisher.verified %} {% endif %}

@{{ publisher.slug }}

{% if publisher.bio %}

{{ publisher.bio }}

{% endif %}
{% if publisher.website %} Website {% endif %} {{ tools|length }} tool{{ 's' if tools|length != 1 else '' }} Joined {{ publisher.created_at|date_format }}

Published Tools

{% if tools %}
{% for tool in tools %} {{ tool_card( owner=tool.owner, name=tool.name, description=tool.description, category=tool.category, downloads=tool.downloads, version=tool.version ) }} {% endfor %}
{% else %}

No tools published yet.

{% endif %}
{% endblock %}