~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/wlmaps/map_detail.html

  • Committer: Holger Rapp
  • Date: 2009-04-04 14:32:27 UTC
  • Revision ID: sirver@kallisto.local-20090404143227-mf49s08keq3nv08c
Initital (unusable) version of wlmaps application

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "wlmaps/base.html" %}
 
2
{% comment %}
 
3
   vim:ft=htmldjango
 
4
{% endcomment %}
 
5
 
 
6
{% block content %}
 
7
<script type="text/javascript">
 
8
$.post("/maps/upload/", function(data){
 
9
  alert("Data Loaded: " + data);
 
10
});
 
11
</script>
 
12
 
 
13
<img src="{{ object.minimap.url }}" />
 
14
 
 
15
<a href="#" id="#upload">Clicky for post</a>
 
16
 
 
17
{% endblock %}