2009-05-13 05:31:44 +01:00
{% extends "base.html" %}
{% load wiki_markup %}
{% block title %}CUCC Virtual Survey Binder: {{ current_expedition }}{{ current_survey }}{%endblock%}
2009-05-13 05:40:35 +01:00
{% block head %}
< link rel = "stylesheet" type = "text/css" href = "{{ settings.MEDIA_URL }}css/nav.css" / >
2009-05-13 05:42:01 +01:00
<!-- <style type="text/css">
h4 { text-align:right; text-decoration:underline }
select { margin:0.5em }
< / style > -->
2009-05-13 05:28:14 +01:00
< script language = "javascript" >
2009-05-13 05:31:44 +01:00
blankColor = "rgb(153, 153, 153)"
highlightedColor = "rgb(125, 125, 125)"
2009-05-13 05:40:35 +01:00
chosenColor = "rgb(255, 255, 255)"
2009-05-13 05:28:14 +01:00
mnuItmLst=document.getElementsByClassName("menuBarItem")
function highlight(div){
for (var i = 0, divIter; divIter = mnuItmLst[i]; i++) {
2009-05-13 05:42:01 +01:00
/*loop though all menuitems. blank them except ones that are toggled on*/
2009-05-13 05:40:35 +01:00
if (divIter.style.backgroundColor!=chosenColor){
2009-05-13 05:31:44 +01:00
divIter.style.backgroundColor=blankColor;
2009-05-13 05:28:14 +01:00
}
}
2009-05-13 05:42:01 +01:00
/*highlight the mouseovered div unless it is toggled on*/
2009-05-13 05:40:35 +01:00
if (div.style.backgroundColor!=chosenColor){
div.style.backgroundColor=highlightedColor;
2009-05-13 05:28:14 +01:00
}
}
function unhighlight(div){
2009-05-13 05:40:35 +01:00
/*highlight the mouseovered div unless it is the chosen one*/
if (div.style.backgroundColor!=chosenColor){
2009-05-13 05:31:44 +01:00
div.style.backgroundColor=blankColor;
2009-05-13 05:29:31 +01:00
}
2009-05-13 05:28:14 +01:00
}
2009-05-13 05:42:01 +01:00
function toggle(div){
if (document.getElementById(div.id+"Content").style.display="none"){
document.getElementById(div.id+"Content").style.display="block";
div.style.backgroundColor=chosenColor;
}
else {
document.getElementById(div.id+"Content").style.display="none";
div.style.backgroundColor=blankColor;
}
}
/* function choose(div){
2009-05-13 05:28:14 +01:00
for (var i = 0, divIter; divIter = mnuItmLst[i]; i++) {
document.getElementById(divIter.id+"Content").style.display="none";
}
document.getElementById(div.id+"Content").style.display="block";
for (var i = 0, divIter; divIter = mnuItmLst[i]; i++) {
2009-05-13 05:31:44 +01:00
document.getElementById(divIter.id).style.backgroundColor=blankColor;
2009-05-13 05:28:14 +01:00
}
2009-05-13 05:31:44 +01:00
div.style.backgroundColor=chosenColor;
document.getElementById(progressTableContent).style.display="none";
2009-05-13 05:42:01 +01:00
}*/
2009-05-13 05:28:14 +01:00
2009-05-13 05:31:44 +01:00
function redirectSurvey(){
2009-05-13 05:40:35 +01:00
window.location = "{% url survey %}" + '/' + document.getElementById("expeditionChooser").value + "%23" + document.getElementById("surveyChooser").value;
2009-05-13 05:31:21 +01:00
}
function redirectYear(){
2009-05-13 05:40:35 +01:00
window.location = "{% url survey %}" + '/' + document.getElementById("expeditionChooser").value + "%23";
2009-05-13 05:28:14 +01:00
}
< / script >
2009-05-13 05:31:44 +01:00
{% endblock %}
2009-05-13 05:33:29 +01:00
< div id = "currentLocation" >
2009-05-13 05:31:44 +01:00
CUCC Expo virtual survey binder:
{% if current_survey %}
{{current_survey}}
{% else %}
{{current_year }}
{% endif %}
2009-05-13 05:33:29 +01:00
< / div >
2009-05-13 05:31:44 +01:00
{% block nav %}
2009-05-13 05:40:35 +01:00
< div id = "nav" >
2009-05-13 05:28:57 +01:00
< br / >
2009-05-13 05:40:35 +01:00
< h3 > Choose a year< / h3 >
2009-05-13 05:42:01 +01:00
< center >
2009-05-13 05:40:35 +01:00
< select id = "expeditionChooser" class = "centre" onChange = "redirectYear()" >
2009-05-13 05:31:44 +01:00
2009-05-13 05:52:15 +01:00
{% for expedition in expeditions %}
2009-05-13 05:31:44 +01:00
2009-05-13 05:40:35 +01:00
< option label = "{{ expedition }}" value = "{{ expedition }}" { % ifequal expedition current_expedition % } selected { % endifequal % } >
2009-05-13 05:28:57 +01:00
2009-05-13 05:40:35 +01:00
{{ expedition }}
2009-05-13 05:31:44 +01:00
2009-05-13 05:40:35 +01:00
< / option >
2009-05-13 05:31:21 +01:00
{% endfor %}
2009-05-13 05:31:44 +01:00
< / select >
2009-05-13 05:42:01 +01:00
< / center >
2009-05-13 05:40:35 +01:00
2009-05-13 05:42:01 +01:00
< div >
<!-- <h4>Click to toggle:</h4> -->
< div id = "progressTable" class = "menuBarItem" onMouseOver = "highlight(this)" onMouseOut = "unhighlight(this)" onClick = "toggle(this)" > {% if current_expedition.survey_set.all %}✓ {% endif %}
survey progress table < / div >
< / div >
2009-05-13 05:52:15 +01:00
< h3 > Choose a wallet number < / h3 >
< center >
< select id = "surveyChooser" class = "centre" onChange = "redirectSurvey()" >
2009-05-13 05:42:01 +01:00
< option label = "show all" value = "" >
{% for survey in current_expedition.survey_set.all %}
< / option >
2009-05-13 05:31:44 +01:00
< option label = "{{ survey }}" value = "{{ survey.wallet_number }}"
2009-05-13 05:31:21 +01:00
{% ifequal survey current_survey %}
selected
2009-05-13 05:42:01 +01:00
{% endifequal %}>
2009-05-13 05:52:15 +01:00
{{ survey }}
2009-05-13 05:42:01 +01:00
< / option >
2009-05-13 05:31:44 +01:00
2009-05-13 05:28:14 +01:00
{% endfor %}
2009-05-13 05:31:44 +01:00
< option label = "add" value = "add" >
2009-05-13 05:28:57 +01:00
< / select >
2009-05-13 05:42:01 +01:00
< / center >
<!-- <h4>Click to toggle:</h4> -->
< div id = "surveyWalletNav" >
< div id = "notes" class = "menuBarItem" onMouseOver = "highlight(this)" onMouseOut = "unhighlight(this)" onClick = "toggle(this)" > {% if notes %}✓ {% endif %}
2009-05-13 05:28:57 +01:00
scanned notes < / div >
2009-05-13 05:42:01 +01:00
< div id = "survexFile" class = "menuBarItem" onMouseOver = "highlight(this)" onMouseOut = "unhighlight(this)" onClick = "toggle(this)" > {% if current_survey.survex_file %}✓ {% endif %}
2009-05-13 05:28:57 +01:00
survex file < / div >
2009-05-13 05:42:01 +01:00
< div id = "printedCentreline" class = "menuBarItem" onMouseOver = "highlight(this)" onMouseOut = "unhighlight(this)" onClick = "toggle(this)" > {% if current_survey.centreline_printed_on %}✓ {% endif %}
2009-05-13 05:28:57 +01:00
printed centreline < / div >
2009-05-13 05:42:01 +01:00
< div id = "scannedPassageSketch" class = "menuBarItem" onMouseOver = "highlight(this)" onMouseOut = "unhighlight(this)" onClick = "toggle(this)" > {% if planSketches %}✓ {% endif %}
2009-05-13 05:28:57 +01:00
scanned passage sketch < / div >
2009-05-13 05:42:01 +01:00
< div id = "tunnelXMLfile" class = "menuBarItem" onMouseOver = "highlight(this)" onMouseOut = "unhighlight(this)" onClick = "toggle(this)" > tunnel xml file< / div >
< div id = "mainSketchIntegration" class = "menuBarItem" onMouseOver = "highlight(this)" onMouseOut = "unhighlight(this)" onClick = "toggle(this)" > add to main sketch< / div >
2009-05-13 05:28:14 +01:00
< / div >
2009-05-13 05:31:44 +01:00
< / div >
2009-05-13 05:40:35 +01:00
< / div >
{% endblock %}
2009-05-13 05:31:21 +01:00
2009-05-13 05:31:44 +01:00
{% block content %}
< div id = "mainContent" >
2009-05-13 05:40:35 +01:00
2009-05-13 05:42:01 +01:00
< div id = "progressTableContent" class = "behind" style = "overflow:auto" >
2009-05-13 05:40:35 +01:00
< h3 > Survey progress table for {{ current_expedition }}< / h3 >
{% if current_expedition.survey_set.all %} <!-- if there are any surveys in the expedition, make the table -->
< table class = "centre" >
2009-05-13 05:31:44 +01:00
< tr >
< th > < / th >
{% for survey in current_expedition.survey_set.all %}
< th > {{ survey.wallet_number }} < / th >
{% endfor %} < / tr >
< tr >
< td > Notes < / td >
{% for survey in current_expedition.survey_set.all %}
< td > {% if survey.notes %}
✓
{% endif %} < / td >
{% endfor %} < / tr >
< tr >
< td > Survex file < / td >
{% for survey in current_expedition.survey_set.all %}
< td > {% if survey.survex_file %}
✓
{% endif %} < / td >
{% endfor %} < / tr >
< tr >
< td > Plans < / td >
{% for survey in current_expedition.survey_set.all %}
< td > {% if survey.plans %}
✓
{% endif %} < / td >
{% endfor %} < / tr >
< tr >
< td > Elevations < / td >
{% for survey in current_expedition.survey_set.all %}
< td > {% if survey.elevations %}
✓
{% endif %} < / td >
{% endfor %} < / tr >
< / table >
2009-05-13 05:40:35 +01:00
{% else %}
2009-05-13 05:42:01 +01:00
< center > [ There are no surveys in the database for this year. Put link in to add one. ]< / center >
2009-05-13 05:40:35 +01:00
{% endif %}
2009-05-13 05:31:21 +01:00
< / div >
2009-05-13 05:31:44 +01:00
< div id = "notesContent" class = "behind" >
< h3 > Scanned notes for {{ current_survey }}.< / h3 >
{% for noteItem in notes %}
< div class = "figure" >
< p > < img src = "{{ noteItem.correctURL }}" class = "thumbnail" >
< p > File at: < a href = "{{ noteItem.correctURL }}" > {{ noteItem.file.name }} < / a > < br / >
Scanned by: {{ noteItem.scanned_by }} < br / >
On: {{ noteItem.scanned_on }} < br / >
< / p >
< / p >
< / div >
{% endfor %}
2009-05-13 05:52:15 +01:00
< div class = "figure" > < a href = "{{ settings.URL_ROOT }}admin/expo/scannedimage/add/" > < img src = "{{ settings.URL_ROOT }}{{ settings.ADMIN_MEDIA_PREFIX }}img/admin/icon_addlink.gif" / > Add a new scanned notes page. < / a > < / div >
2009-05-13 05:28:57 +01:00
< / div >
2009-05-13 05:52:15 +01:00
< br class = "clearfloat" / >
2009-05-13 05:28:57 +01:00
< div id = "survexFileContent" class = "behind" > survex file editor, keeping file in original structure < br / >
who entered by < / div >
< div id = "printedCentrelineContent" class = "behind" > centreline < / div >
< div id = "scannedPassageSketchContent" class = "behind" >
2009-05-13 05:31:44 +01:00
< h3 > Scanned plan sketch files for {{ current_survey }}.< / h3 >
{% for sketchItem in planSketches %}
< div class = "figure" >
< p > < img src = "{{ sketchItem.correctURL }}" class = "thumbnail" / >
< p > File at: < a href = "{{ sketchItem.correctUrl }}" > {{ sketchItem.file.name }} < / a > < br / >
Scanned by: {{ sketchItem.scanned_by }} < br / >
On: {{ sketchItem.scanned_on }} < br / >
< / p >
< / p >
< / div >
{% endfor %}
2009-05-13 05:52:15 +01:00
< div class = "figure" > < a href = "{{ settings.URL_ROOT }}admin/expo/scannedimage/add/" > < img src = "{{ settings.URL_ROOT }}{{ settings.ADMIN_MEDIA_PREFIX }}img/admin/icon_addlink.gif" / > Add a new scanned sketch. < / a > < / div >
2009-05-13 05:31:44 +01:00
< / div >
2009-05-13 05:28:57 +01:00
< div id = "tunnelXMLfileContent" class = "behind" > link to tunnel xml file. potentially instance of tunnel applet... < / div >
< div id = "mainSketchIntegrationContent" class = "behind" > link to main sketch file < / div >
<!-- end #mainContent -->
< / div >
< br class = "clearfloat" / >
2009-05-13 05:42:01 +01:00
2009-05-13 05:33:29 +01:00
{% endblock %}