mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-21 23:01:52 +00:00
who to blame
This commit is contained in:
parent
7df2d44748
commit
33026ca9ea
@ -6,7 +6,7 @@ from django.shortcuts import render
|
||||
import troggle.settings as settings
|
||||
from troggle.core.models.caves import Cave, Entrance
|
||||
from troggle.core.models.logbooks import LogbookEntry
|
||||
from troggle.core.models.survex import SurvexStation
|
||||
from troggle.core.models.survex import SurvexStation, SurvexPersonRole
|
||||
from troggle.core.models.troggle import DataIssue, Expedition, Person, PersonExpedition
|
||||
from troggle.parsers.people import GetPersonExpeditionNameLookup, foreign_friends
|
||||
|
||||
@ -49,6 +49,11 @@ def svxfilewild(request, year=None):
|
||||
if sb.name != "rootblock":
|
||||
svxwild.append(sb)
|
||||
print(f" WILD {sb.survexfile} {sb.date}")
|
||||
people = SurvexPersonRole.objects.filter(survexblock=sb)
|
||||
team = []
|
||||
for p in people:
|
||||
team.append(p.personname)
|
||||
sb.team = team
|
||||
# else:
|
||||
# print(f" TAME {sb.survexfile}")
|
||||
|
||||
|
@ -11,14 +11,15 @@ i.e. they have no *REF line which refers to the wallet holding the raw data for
|
||||
<p>WORK IN PROGRESS
|
||||
|
||||
<table>
|
||||
<tr><th>Survex Blocks</th><th>date</th><th>survex file</th><th>surveyed length</th></tr>
|
||||
<tr><th>survex block with no *ref</th><th>date</th><th>parent block</th><th>within survex file</th><th>surveyed length</th><th>team</th></tr>
|
||||
{% for sb in svxwild %}
|
||||
<tr>
|
||||
<td style="text-align:center"> {{ sb }} </td>
|
||||
<td style="text-align:center"> {{sb.date }} </td>
|
||||
<td style="text-align:center"> {{sb.parent }} </td>
|
||||
<td style="text-align:left"> <a href="{% url "svx" sb.survexfile.path %}">{{sb.survexfile.path}}</a> </td>
|
||||
<td style="text-align:center"> {{sb.legslength|floatformat:"1g" }}m </td>
|
||||
</tr>
|
||||
<td style="text-align:center"> {{sb.team|truncatechars:50 }} </td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
<br />
|
||||
|
Loading…
Reference in New Issue
Block a user