blob: cfda968b8687e539ecfd891f99d623897aaf54be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<!-- dwgfiles.html - this text visible because this template has been included -->
{% extends "base.html" %}
{% block title %}Drawings files{% endblock %}
{% block content %}
<h3>All Tunnel and Therion files - in the repository</h3>
<p>You can see an up to date list of drawings files by looking at
<a href="/repositories/drawings/.git/tree/">the drawings repository</a>. This is up to date even if the upload
has been done <em>after</em> the most recent database reset.
<h3>All Tunnel and Therion files - linked to wallets, survey scans, frames and scraps</h3>
<p>This is the list of drawings as at the most recent database reset.
<table style="font-size: 85%" width=95%>
<tr><th>Drawing (Tunnel or Therion) File</th><th>Size</th><th>Paths</th><th>Wallets</th><th>Scan files in the wallets</th><th>Frames</th></tr>
{% for dwgfile in dwgfiles %}
<tr>
<td><a href="{% url "dwgfilesingle" dwgfile.dwgpath %}">{{dwgfile.dwgpath}}</a></td>
<td align="right" style="padding:2px">{{dwgfile.filesize}}</td>
<td align="right" style="padding:2px">{{dwgfile.npaths}}</td>
<td style="padding:2px">
{% for scanswallet in dwgfile.dwgwallets.all %}
<a href="{{scanswallet.get_absolute_url}}">{{scanswallet.walletname}}</a>
{% endfor %}
</td>
<td style="padding:2px">
{% for singlescan in dwgfile.scans.all %}
<a href="{{singlescan.get_absolute_url}}">{{singlescan.name}}</a>
{% endfor %}
</td>
<td style="padding:2px">
{% for rdwgfile in dwgfile.dwgcontains.all %}
<a href="{% url "dwgfilesingle" rdwgfile.dwgpath %}">{{rdwgfile.dwgpath}}</a>
{% endfor %}
</td>
</tr>
{% endfor %}
</table>
{% endblock %}
|