forked from expo/troggle
Form creates wallet folder and contents.json
This commit is contained in:
@@ -16,6 +16,44 @@ from troggle.core.utils import save_carefully, GetListDir
|
||||
'''Searches through all the survey scans directories (wallets) in expofiles, looking for images to be referenced.
|
||||
'''
|
||||
|
||||
contentsjson = "contents.json"
|
||||
indexhtml = "walletindex.html"
|
||||
|
||||
wallet_blank_json = {
|
||||
"cave": "",
|
||||
"date": "",
|
||||
"description url": "/caves",
|
||||
"description written": False,
|
||||
"electronic survey": False,
|
||||
"elev drawn": False,
|
||||
"elev not required": False,
|
||||
"name": "",
|
||||
"people": [
|
||||
"Unknown"
|
||||
],
|
||||
"plan drawn": False,
|
||||
"plan not required": False,
|
||||
"qms written": False,
|
||||
"survex file": [],
|
||||
"survex not required": False,
|
||||
"website updated": False}
|
||||
|
||||
wallet_blank_html = '''<html><body><H1>Wallet WALLET</H1>
|
||||
<p>List of trips: <a href="http://expo.survex.com/expedition/YEAR">expedition/YEAR</a>
|
||||
- troggle-processed .svx files and logbook entries on server</p>
|
||||
<p>Date: </p><p>People: Unknown,</p>
|
||||
<p>Cave <a href='http://expo.survex.com/caves/'>Guidebook description</a>
|
||||
- A description is indicated as being needed, so may need adding into this cave page.
|
||||
<p>Survex file: not identified yet
|
||||
<H2>Issues</H2>
|
||||
<p>The description needs writing</p>
|
||||
<p>The QMs needs writing</p><p>The website is marked as needing updating (using the guidebook description)</p>
|
||||
<p>Tunnel / Therion drawing files need drawing</p>
|
||||
<H2>Files</H2>
|
||||
<UL>
|
||||
</UL>
|
||||
</body></html>
|
||||
'''
|
||||
|
||||
def get_or_create_placeholder(year):
|
||||
""" All surveys must be related to a logbookentry. We don't have a way to
|
||||
|
||||
Reference in New Issue
Block a user