Page MenuHomeSoftware Heritage

branches.html
No OneTemporary

branches.html

{% extends "browse.html" %}
{% block swh-browse-before-panels %}
{% if snapshot_context %}
{% include "includes/snapshot-context.html" %}
{% endif %}
{% endblock %}
{% block swh-browse-main-panel-content %}
<div class="panel-heading">
<div class="pull-left">
<h2>{{ top_panel_text }}</h2>
</div>
<div class="clearfix"></div>
</div>
<div class="table-responsive">
<table class="table swh-table-even-odd">
<thead>
<tr>
<th><i class="fa fa-code-fork fa-fw"></i>Name</th>
<th>Revision</th>
<th>Message</th>
<th>Date</th>
</tr>
</thead>
<tbody>
{% for branch in displayed_branches %}
<tr class="swh-origin-branch">
<td style="max-width: 300px"><i class="fa fa-code-fork fa-fw"></i><a href="{{ branch.directory_url }}">{{ branch.name }}</a></td>
<td><a href="{{ branch.revision_url }}">{{ branch.revision|slice:":7" }}</a></td>
<td class="swh-log-entry-message swh-table-cell-text-overflow" style="min-width: 500px" title="{{ branch.message }}">{{ branch.message }}</td>
<td style="min-width: 250px">{{ branch.date }}</td
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}
{% block swh-browse-after-panels %}
{% if prev_branches_url or next_branches_url %}
<ul class="pager">
{% if prev_branches_url %}
<li><a href="{{ prev_branches_url }}">Previous</a></li>
{% else %}
<li class="disabled"><a>Older</a></li>
{% endif %}
{% if next_branches_url %}
<li><a href="{{ next_branches_url }}">Next</a></li>
{% else %}
<li class="disabled"><a>Newer</a></li>
{% endif %}
</ul>
{% endif %}
{% endblock %}

File Metadata

Mime Type
text/html
Expires
Thu, Jul 3, 11:17 AM (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3368427

Event Timeline