{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block breadcrumbs %}
Home
{% endblock %}
{% block body %}
Types
id |
|
{% for type_id, type in default_config.get_types().items() %}
{{ type_id }} |
View |
{% endfor %}
Git References
Ref |
Commit |
|
{% for git_commit_with_refs in git_commits_with_refs %}
{{ git_commit_with_refs.get_refs_str() }}
{% if git_commit_with_refs.has_ref(default_ref_str) %} (Default) {% endif %}
|
{{ git_commit_with_refs.get_commit_hash() }} |
View
|
{% endfor %}
{% endblock %}