Page MenuHomeSoftware Heritage

directory.html
No OneTemporary

directory.html

{% extends "layout.html" %}
{% block title %}Directory browse{% endblock %}
{% block content %}
<div class="well well-sm">
<b>Directory sha1 git:</b> {{ dir_sha1_git }}
</div>
{% include "content-directory-top-navigation.html" %}
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>File</th>
<th>Mode</th>
<th>Size</th>
<th>Sha1 git</th>
</tr>
</thead>
<tbody>
{% for d in dirs %}
<tr>
<td class="swh-directory">
<i class="fa fa-folder fa-fw" aria-hidden="true"></i>
<a href="{{ d.url }}">{{ d.name }}</a>
</td>
<td>{{ d.perms }}</td>
<td></td>
<td>{{ d.target }}</td>
</tr>
{% endfor %}
{% for f in files %}
<tr>
<td class="swh-content">
<i class="fa fa-file-text fa-fw" aria-hidden="true"></i>
<a href="{{ f.url }}">{{ f.name }}</a>
</td>
<td>{{ f.perms }}</td>
<td>{{ f.length }}</td>
<td>{{ f.target }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}

File Metadata

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

Event Timeline