{% extends "base.html" %} {% block title %}Repository: {{ repository.name }}{% endblock %} {% block content %}

{% if repository.is_example %} {% endif %} Repository: {{ repository.name }} {% if repository.is_example %} Example {% endif %}

Back to List Download {% if repository.is_example %} Clone {% else %} Edit {% endif %}
{% include "steeloweb/partials/messages.html" %}
Repository Information
Name:
{{ repository.name }}
Type:
{{ repository.get_repo_type_display }}
Source:
{% if repository.is_example %} Example Repository {% else %} User Repository {% endif %}
Created:
{{ repository.created_at }}
Last Updated:
{{ repository.updated_at }}
File:
{{ repository.file.name }}
{% if repository.description %}
Description:

{{ repository.description|linebreaks }}

{% endif %}
Usage
{% with model_runs=repository.model_runs.all %} {% if model_runs %}
Used in {{ model_runs.count }} Model Run{% if model_runs.count > 1 %}s{% endif %}:
{% else %}
This repository is not used in any model runs yet.
{% endif %} {% endwith %}
File Preview
JSON Format
This is a preview of the JSON file content. Large files may be truncated.
{{ repository.get_formatted_content }}
{% endblock %} {% block extra_js %} {% endblock %}