diff options
-rw-r--r-- | expo/views_other.py | 18 | ||||
-rw-r--r-- | media/css/main3.css | 64 | ||||
-rw-r--r-- | media/expoBanner.gif | bin | 255474 -> 254791 bytes | |||
-rw-r--r-- | templates/base.html | 99 | ||||
-rw-r--r-- | templates/cave.html | 2 | ||||
-rw-r--r-- | templates/caveindex.html | 9 | ||||
-rw-r--r-- | templates/survey.html | 5 | ||||
-rw-r--r-- | urls.py | 9 |
8 files changed, 145 insertions, 61 deletions
diff --git a/expo/views_other.py b/expo/views_other.py index 728119a..0f8cb79 100644 --- a/expo/views_other.py +++ b/expo/views_other.py @@ -32,9 +32,25 @@ def frontpage(request): #'randSent':randSent.randomLogbookSentence(),
expeditions = Expedition.objects.order_by("-year")
+ logbookentry = LogbookEntry
+ cave = Cave
+ photo = Photo
+ return render_response(request,'frontpage.html', locals())
+
+def todo(request):
+ message = "no test message" #reverse('personn', kwargs={"name":"hkjhjh"})
+ if "reloadexpos" in request.GET:
+ message = LoadPersonsExpos()
+ message = "Reloaded personexpos"
+ if "reloadsurvex" in request.POST:
+ message = LoadAllSurvexBlocks()
+ message = "Reloaded survexblocks"
+
+ #'randSent':randSent.randomLogbookSentence(),
+ expeditions = Expedition.objects.order_by("-year")
totallogbookentries = LogbookEntry.objects.count()
return render_response(request,'index.html', {'expeditions':expeditions, 'all':'all', 'totallogbookentries':totallogbookentries, "message":message})
-
+
def calendar(request,year):
week=['S','S','M','T','W','T','F']
if year:
diff --git a/media/css/main3.css b/media/css/main3.css index e0b3c4e..467de9d 100644 --- a/media/css/main3.css +++ b/media/css/main3.css @@ -29,20 +29,6 @@ ul list-style: none;
}
-div#footer
-{
- position: fixed;
- bottom: 0;
- clear:both;
- background-color:#999;
- color:red;
- text-align:center;
- margin-left:auto;
- margin-right:auto;
-}
-
-
-
div.logbookentry
{
text-align:left;
@@ -149,7 +135,7 @@ div.centre img { vertical-align: middle; } h1 { text-align: center; font-size: 210%; display: inline;}
h2 { color: #009900; }
-h3 { color: #2c105e; text-align:left; border-bottom:thin solid black; margin-bottom:1em; margin-top:1em }
+h3 { color: #000 text-align:left; border-bottom:thin solid black; margin-bottom:1em; margin-top:1em; font-weight:bold}
h4 { color: #0d664c; }
h4.navbar {line-height: 0px;}
img.onright, div.onright { vertical-align: top; float: right;
@@ -267,9 +253,6 @@ div.figure p { img.thumbnail {
width: 100%;
}
-br.clearfloat {
- clear:both;
-}
#error {
color: red;
@@ -299,19 +282,22 @@ div#editLinks { filter:alpha(opacity=75);
-moz-opacity:.75;
opacity:.75;
+}
+div#editLinks a{
+ color:#FFF;
}
div#content {
margin-top: 50px;
- margin-left: 100px;
- margin-right: 100px;
- padding: 10px;
-
+ margin-left: 120px;
+ margin-right: 120px;
+ padding: 5em;
+ background:#CCC;
}
-img#banner {
+.footer {
position:fixed;
width:100%;
bottom:0;
@@ -319,7 +305,7 @@ img#banner { }
body {
- background-color:#CCC;
+ background-color:#000;
padding-bottom:100px;
}
@@ -331,22 +317,24 @@ h1 { }
-#rightMargin {
+.rightMargin {
position:absolute;
z-index:-2;
- width:100px;
+ width:130px;
right:0px;
top:0px;
clip: rect(auto,auto,auto,auto);
+ background:#000;
}
-#leftMargin {
+.leftMargin {
position:absolute;
z-index:-2;
- width:100px;
+ width:130px;
top:0px;
left:0px;
clip: rect(auto,100px,auto,auto,);
+ background:#000;
}
#footerLinks{
@@ -355,6 +343,24 @@ h1 { bottom:0;
left:0;
width:100%;
- background-color:#333
+ background-color:#000;
+ color:#999
+}
+
+#footerLinks a{
+ color:#FFF
+}
+
+/*.fadeIn {
+ display: none;
+}*/
+
+#timeMachine {
+ width:auto;
+ right:0;
+ left:auto;
}
+#col1 {
+ width:60%
+}
\ No newline at end of file diff --git a/media/expoBanner.gif b/media/expoBanner.gif Binary files differindex 03ad1f1..232e9ad 100644 --- a/media/expoBanner.gif +++ b/media/expoBanner.gif diff --git a/templates/base.html b/templates/base.html index c7fa462..eb478c5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,56 +5,117 @@ <link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/main3.css" />
<title>{% block title %}THE TITLE{% endblock %}</title>
<script src="{{ settings.MEDIA_URL }}js/base.js" type="text/javascript"></script>
-<script src="{{ settings.MEDIA_URL }}js/jquery.js" type="text/javascript"></script>
+<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
+<script src="http://ejohn.org/apps/livesearch/jquery.livesearch.js" type="text/javascript"></script>
+
<script type="text/javascript">
-
-$("#killEyeCandy").click(function () {
- $("#leftMargin").fadeIn("slow");
+$(document).ready(function() {
+
+
+$(".toggleEyeCandy").click(function () {
+ $(".leftMargin,.rightMargin").toggle("fade");
+ $(".toggleEyeCandy").toggle();
});
+$(".nav").css('opacity','7')
+$(".eyeCandy").hide();
+setTimeout("$('.leftMargin').fadeIn(3000);",2000);
+setTimeout("$('.rightMargin').fadeIn(3000);",4000);
+
+
+/*$("#footerLinks").hover(
+ function() {$(".footer").fadeIn("slow")},
+ function() {$(".footer").fadeOut("slow")}
+);*/
+$("#expoWebsiteLink").hover(
+ function() {$("#richardBanner").fadeIn("slow")},
+ function() {$("#richardBanner").fadeOut("slow")}
+);
+
+$("#cuccLink").hover(
+ function() {
+
+ $("#timeMachine").fadeIn("slow");
+ $(".rightMargin,.leftMargin").fadeTo("30","fast");
+ },
+ function() {$("#timeMachine").fadeOut("slow")}
+);
+
+
+});
+
+function contentHeight(){
+setMaxHeight($(".rightMargin,#content,.leftMargin,#col2"),$("#content"));
+};
+
+function setMaxHeight(group, target) {
+ tallest = 0;
+ group.each(function() {
+ thisHeight = $(this).height();
+ if(thisHeight > tallest) {
+ tallest = thisHeight;
+ }
+ });
+ target.height(tallest);
+}
+$('#q').liveUpdate('posts').focus();
</script>
{% block head %}{% endblock %}
</head>
-<body>
+<body onLoad="contentHeight();">
<div id="header">
<h1>CUCC Expeditions to Austria: 1976 - 2009</h1>
<div id="editLinks"> {% block loginInfo %}
{% if user.username %}
- You are logged in as {{ user.username }} {% if user.person %}<a href="{{ user.person.get_absolute_url }}">{{ user.person }}</a>{% endif %}.
+ You are logged in as {{ user.username }} {% if user.person %}(<a href="{{ user.person.get_absolute_url }}">{{ user.person }}</a>){% endif %}.
| <a href="{{ settings.URL_ROOT }}/accounts/logout/">Log out</a> {% else %} <a href="{{ settings.URL_ROOT }}/accounts/register">Sign up</a> | <a href="{{ settings.URL_ROOT }}/accounts/login/">Log in</a> {% endif %}
{% endblock%}
- | <a href="{{ settings.URL_ROOT }}">Home </a> | <a href="#" id="killEyeCandy">Kill Eyecandy</a> |
+ | <a href="{{ settings.URL_ROOT }}">Home</a> | <a class="toggleEyeCandy">Kill Eyecandy</a><a class="toggleEyeCandy" style="display: none;">Show Eyecandy</a>
{% block editLink %}
{% endblock %}
</div>
</div>
+<div id="nav">
{% block nav %}
<!-- Use id="nav" for the left side menu -->
{% endblock %}
- <div id="content" > {% block contentheader %}
+</div>
+
+
+ <div id="content" >
+
+ {% block contentheader %}
{% endblock %}
+
{% block content %}
REPLACE : The content
- {% endblock %} <br class="clearfloat" />
- <!--This is to ensure that the content div expands around floated objects*/-->
+ {% endblock %}
+
</div>
-</div>
-<div class="push"></div>
-<div class="footer">
-<img id="banner" src="{{ settings.MEDIA_URL }}expoBanner.gif"/>
-</div>
-<img id="leftMargin" src="{{ settings.MEDIA_URL }}eieshole.jpg">
-<img id="rightMargin" src="{{ settings.MEDIA_URL }}goesser.jpg">
+<img id="richardBanner" class="footer eyeCandy" src="{{ settings.MEDIA_URL }}expoBanner.gif"/>
+<img id="timeMachine" class="footer eyeCandy" src="{{ settings.MEDIA_URL }}timemachine.gif"/>
+<img class="caversLink eyeCandy" src="{{ settings.MEDIA_URL }}expoBanner.gif"/>
+
+
+
-<div class="footer" id="footerLinks">
-<a href="http://cucc.survex.com"> CUCC website</a>| <a href="http://cucc.survex.com/expo"> Expedition website </a>| <a href="{% url frontpage %}"> Troggle front page </a>| <a href="{% url caveindex %}"> All caves </a>| <a href="{% url personindex %}"> All cavers </a>| <a href="{% url caveindex %}"> Virtual survey binder </a>| <a href="{% url survey %}"> Expedition statistics </a>| <a href="{% url calendar 2007 %}"> Expedition calendar </a>
+<div id="footerLinks">
+ <a id="cuccLink" href="http://cucc.survex.com">CUCC website</a> |
+ <a id="expoWebsiteLink" href="http://cucc.survex.com/expo">Expedition website</a> |
+ External links |
+ <a href="{% url frontpage %}">Troggle front page</a> |
+ <a href="{% url caveindex %}">Caves</a> |
+ <a id="caversLink" href="{% url personindex %}">Cavers</a> |
+ <a href="{% url survey %}"> Survey binder</a> |
+ <a href="{% url stats %}"> Statistics</a> |
+ <a href="{% url calendar 2007 %}">Expedition calendar</a>
</div>
</body>
diff --git a/templates/cave.html b/templates/cave.html index 9b7c482..0f72b11 100644 --- a/templates/cave.html +++ b/templates/cave.html @@ -1,6 +1,6 @@ {% extends "cavebase.html" %}
{% load wiki_markup %}
-{% block editLink %}<a href={{cave.get_admin_url}}>Edit cave {{cave|wiki_to_html_short}}</a>{% endblock %}
+{% block editLink %}| <a href={{cave.get_admin_url}}>Edit cave {{cave|wiki_to_html_short}}</a>{% endblock %}
{% block content %}
<div id="col2">
diff --git a/templates/caveindex.html b/templates/caveindex.html index 3132701..b743d6c 100644 --- a/templates/caveindex.html +++ b/templates/caveindex.html @@ -13,7 +13,14 @@ </ul>
<h3>All caves</h3>
-<ul>
+
+ <form method="get">
+ <div>
+ <input type="text" value="" name="q" id="q" />
+ </div>
+ </form>
+
+<ul id="posts">
{% for cave in caves %}
<li> <a href="{{ cave.get_absolute_url }}">{{cave.official_name|wiki_to_html_short}} ({{cave}})</a> </li>
{% endfor %}
diff --git a/templates/survey.html b/templates/survey.html index e2e8c80..6fce15f 100644 --- a/templates/survey.html +++ b/templates/survey.html @@ -6,10 +6,7 @@ {% block head %}
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/nav.css" />
-<!--<style type="text/css">
-h4 { text-align:right; text-decoration:underline }
-select { margin:0.5em }
-</style>-->
+
<script language="javascript">
blankColor = "rgb(153, 153, 153)"
highlightedColor = "rgb(125, 125, 125)"
@@ -12,6 +12,7 @@ admin.autodiscover() urlpatterns = patterns('',
url(r'^$', views_other.frontpage, name="frontpage"),
+ url(r'^todo/$', views_other.todo, name="todo"),
url(r'^caveindex/?$', views_caves.caveindex, name="caveindex"),
url(r'^personindex$', views_logbooks.personindex, name="personindex"),
@@ -31,11 +32,7 @@ urlpatterns = patterns('', url(r'^jgtfile/(.*)$', view_surveys.jgtfile, name="jgtfile"),
url(r'^jgtuploadfile$', view_surveys.jgtuploadfile, name="jgtuploadfile"),
-
-
-
-
-
+
url(r'^cave/(?P<cave_id>[^/]+)/?(?P<ent_letter>[^/])$', ent),
#(r'^cave/(?P<cave_id>[^/]+)/edit/$', edit_cave),
#(r'^cavesearch', caveSearch),
@@ -60,7 +57,7 @@ urlpatterns = patterns('', url(r'^survey/?$', surveyindex, name="survey"),
url(r'^survey/(?P<year>\d\d\d\d)\#(?P<wallet_number>\d*)$', survey, name="survey"),
- url(r'^controlpanel/?$', views_other.controlPanel, name="survey"),
+ url(r'^controlpanel/?$', views_other.controlPanel, name="controlpanel"),
(r'^admin/doc/?', include('django.contrib.admindocs.urls')),
(r'^admin/(.*)', admin.site.root),
|