{% extends "base.html" %} {% block title %}PolyglotMiner — Multi-Repository Dashboard{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Research Intelligence Center

Repository Analysis Dashboard

Track programming language breakdown, lines of code, and historical evolution across your open-source repositories.

Active Repositories
{{ repo_summaries|length }}
Analyzed projects
Total Analysis Runs
{{ all_snapshots|length }}
Historical snapshots stored
Source Files
-
Filtered by active types
Code LOC
-
Filtered by active types
{% if repo_summaries|length == 0 %}

No Repositories Analyzed Yet

Use the quick scan form above or run polyglotminer scan <target> in your terminal.

{% else %}
Analyzed Repositories ({{ repo_summaries|length }})
{% for summary in repo_summaries %} {% set latest = summary.latest %}

{{ summary.repo_name }}

{% if latest.repo_path.startswith('http') or latest.repo_path.startswith('git@') %} {{ latest.repo_path }} {% else %} {{ latest.repo_path }} {% endif %}
{{ summary.runs|length }} run{{ 's' if summary.runs|length > 1 else '' }}
Files
-
Code LOC
-
Languages
-
{{ latest.scan_id }}
View Report
{% if summary.runs|length > 1 %}
View {{ summary.runs|length - 1 }} older run{{ 's' if summary.runs|length > 2 else '' }}
{% for run in summary.runs[1:] %}
{{ run.scan_id }}
{% endfor %}
{% endif %}
{% endfor %}
All Historical Runs ({{ all_snapshots|length }} total snapshots)
Click any column header to sort runs by repository, date, commit, files, or LOC.
Repository Scan ID / Timestamp Commit Branch Files Code LOC Primary Language Actions
0 selected
{% endif %} {% endblock %} {% block scripts %} {% endblock %}