{% extends "dashboard/base.html" %} {% set active_page = 'tools' %} {% block title %}My Tools - CmdForge Dashboard{% endblock %} {% block dashboard_header %}

My Tools

Manage your published tools

Publish New Tool
{% endblock %} {% block dashboard_content %} {% if tools %}
{% for tool in tools %} {% endfor %}
Tool Version Downloads Rating Issues Status Actions
{{ tool.name }}

{{ tool.description or 'No description' }}

v{{ tool.version }}

{{ tool.published_at|timeago }}

{{ tool.downloads|format_number }} {% if tool.rating and tool.rating > 0 %}
{{ "%.1f"|format(tool.rating) }} ({{ tool.rating_count }})
{% else %} No ratings {% endif %}
{% if tool.open_issues %}
{{ tool.open_issues }} {% if tool.security_issues %} {{ tool.security_issues }} security {% endif %}
{% else %} None {% endif %}
{% if tool.deprecated %} Deprecated {% else %} Active {% endif %}
View
{% if pending_prs %}

Pending Publications

{% endif %} {% else %}

No tools yet

You haven't published any tools. Create your first tool and share it with the community.

Learn How to Publish
{% endif %} {% endblock %}