mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
add url to wallets
This commit is contained in:
parent
68409c70fd
commit
126aaa0633
@ -49,6 +49,7 @@ def svxfilewild(request, year=None):
|
|||||||
if sb.name != "rootblock":
|
if sb.name != "rootblock":
|
||||||
svxwild.append(sb)
|
svxwild.append(sb)
|
||||||
print(f" WILD {sb.survexfile} {sb.date}")
|
print(f" WILD {sb.survexfile} {sb.date}")
|
||||||
|
sb.year = f"{expedition}"
|
||||||
people = SurvexPersonRole.objects.filter(survexblock=sb)
|
people = SurvexPersonRole.objects.filter(survexblock=sb)
|
||||||
team = []
|
team = []
|
||||||
for p in people:
|
for p in people:
|
||||||
|
@ -14,7 +14,7 @@ i.e. they have a survex block (begin..end) with no *REF line which refers to the
|
|||||||
{% for sb in svxwild %}
|
{% for sb in svxwild %}
|
||||||
<tr>
|
<tr>
|
||||||
<td style="text-align:center"> {{ sb }} </td>
|
<td style="text-align:center"> {{ sb }} </td>
|
||||||
<td style="text-align:center"> {{sb.date }} </td>
|
<td style="text-align:center"><a href="/wallets/year/{{sb.year}}">{{sb.date }}</a> </td>
|
||||||
<td style="text-align:center"> {{sb.parent }} </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:left"> <a href="{% url "svx" sb.survexfile.path %}">{{sb.survexfile.path}}</a> </td>
|
||||||
<td style="text-align:center"> {{sb.legslength|floatformat:"1g" }}m </td>
|
<td style="text-align:center"> {{sb.legslength|floatformat:"1g" }}m </td>
|
||||||
@ -24,7 +24,9 @@ i.e. they have a survex block (begin..end) with no *REF line which refers to the
|
|||||||
<br />
|
<br />
|
||||||
If the "team" field is empty, it probably means that the survex file has been created since the last database reset.
|
If the "team" field is empty, it probably means that the survex file has been created since the last database reset.
|
||||||
<br />
|
<br />
|
||||||
If the parent block says "troggle _unseens" then the survex file has not been plumbed in to the expo survex network yet.
|
If the parent block says "troggle _unseens" or "None" then the survex file has not been plumbed in to the expo survex network yet.
|
||||||
|
<br />
|
||||||
|
If there is a *ref line of the correct format, then maybe that wallet has not been created yet. Create it, and fill in the data.
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<table>
|
<table>
|
||||||
<tr><th>Year</th><th>Survex<br>Survey<br>Blocks</th><th>Survex<br>Survey Legs</th><th>Survex <br>length(m)</th></tr>
|
<tr><th>Year</th><th>Survex<br>Survey<br>Blocks</th><th>Survex<br>Survey Legs</th><th>Survex <br>length(m)</th></tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user