diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:27:43 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:27:43 +0100 |
commit | c6cce8d2fe470b42740258e737877d94d1b3fdb2 (patch) | |
tree | 4b148e1ad42906e0eca59873264da1b96adc6df9 /templates | |
parent | 95a08ffbd9459d200d20863d1a59ffe475868600 (diff) | |
download | troggle-c6cce8d2fe470b42740258e737877d94d1b3fdb2.tar.gz troggle-c6cce8d2fe470b42740258e737877d94d1b3fdb2.tar.bz2 troggle-c6cce8d2fe470b42740258e737877d94d1b3fdb2.zip |
[svn] Add beginnings of virtual survey binder: new Survey and ScannedImage models, survey parser. Still has lots of problems, but I need some help with the file upload aspect so am committing now. Biggest problem is trying to call save() on the images from the API. It needs arguments that I don't understand. Also, the # in our survey paths was causing trouble. I worked around this with a correctURL method which urlencodes the actual URL, but admin still tries to use a URL with a # in it.
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8152 by aaron @ 1/15/2009 6:22 AM
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index 66d0529..31169c1 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,6 +8,22 @@ <script src="{{ settings.MEDIA_URL }}js/base.js" type="text/javascript"></script>
</head>
<body>
+
+<body onLoad="fadeText()">
+<img src="{{ settings.MEDIA_URL }}loserBanner.jpg" style="width:100%;position:absolute; z-index:-4;width:100%;left:0;right:0;height:100px">
+<div id="expoHeader" style="display:inline;">
+ <h1>CUCC Expeditions to Austria: 1976 - </h1>
+ <div id="expoFinalDate" style="display:inline;" >
+ <h1>1976</h1>
+ </div>
+</div>
+<p> </p>
+<p> </p>
+<p> </p>
+<center><iframe src="{{ settings.MEDIA_URL }}intro.html" style="height:600px; width:800px; border:hidden"></iframe></center>
+
+</body>
+
<div id="editLink" style="right:0px; top:0px; text-align: right; position: absolute; top:0; right:0; z-index:1">
{% block editLink %}not editable
{% endblock %}
|