{% extends "base.html" %} {% block title %}Dashboard - RAGVersion{% endblock %} {% block content %}
| File Name | Type | Versions | Size | Last Updated | Actions |
|---|---|---|---|---|---|
|
{{ doc.file_name }} {{ doc.file_path }} |
{{ doc.file_type }} | {{ doc.version_count }} | {% set kb = doc.file_size / 1024 %} {% if kb < 1024 %} {{ "%.1f"|format(kb) }} KB {% else %} {{ "%.1f"|format(kb / 1024) }} MB {% endif %} | {{ doc.updated_at.strftime('%Y-%m-%d %H:%M') if doc.updated_at else 'N/A' }} | View |
Start tracking documents using the CLI: ragversion track ./documents
| File Type | Count | Percentage | Distribution |
|---|---|---|---|
| {{ file_type }} | {{ count }} | {% set percent = (count / stats.total_documents * 100) if stats.total_documents > 0 else 0 %} {{ "%.1f"|format(percent) }}% |