{% extends "base.html" %}
{% load wiki_markup %}
{% load survex_markup %}
{% block title %}Survey Scans Folder{% endblock %}
{% block content %}
Survey Scans in: {{scansfolder.walletname}}
{% for singlescan in scansfolder.singlescan_set.all %}
{{singlescan.name}} |
{% for survexblock in singlescan.survexblock_set.all %}
{{survexblock}}
{% endfor %}
|
{% endfor %}
Survex surveys referring to this wallet
{% for survexblock in scansfolder.survexblock_set.all %}
{{survexblock}} |
{% endfor %}
{% endblock %}