1
{% extends "wlmaps/base.html" %}
7
{% load wlprofile_extras %}
8
{% load threadedcommentstags %}
9
{% load pagination_tags %}
13
{% block content_header %}
16
{% block content_tabbing %}
17
<ul class="tab-list small">
19
<a href="{% url 'wlmaps_upload' %}">Upload a new map</a>
24
{% block content_main %}
26
<div class="blogEntry">
28
The map files have to be placed in the Widelands map directory to be found by the game. Check the <a href="/wiki/Technical%20FAQ/#where_are_my_maps_and_savegames_stored">Technical FAQ</a> to find the map directory.
30
{% autopaginate maps maps_per_page as object_list %}
31
{% paginate using "pagination/pagination_mod.html" %}
34
{% for map in object_list %}
35
<tr class="{% cycle "odd" "even" %}">
36
<td class="first-column"><a href="{{ map.get_absolute_url }}"><img class="minimap" src="{{ MEDIA_URL }}{{ map.minimap }}" alt="{{ map.name }}" /></a></td>
38
<h3><a class="invertedColor" href="{{ map.get_absolute_url }}">{{ map.name }}</a></h3>
41
<td class="grey">Author:</td><td>{{ map.author }}</td>
42
<td class="spacer"></td>
43
<td class="grey">Dimensions:</td><td>{{ map.w }} x {{ map.h }}</td>
46
<td class="grey">World:</td>
48
{% if map.world_name %}
49
{{ map.world_name|title }}
54
<td class="spacer"></td>
55
<td class="grey">Max. Players:</td><td>{{ map.nr_players }}</td>
58
<td class="grey">Rating:</td>
60
{% ratings map read_only template_name='star_rating/average.html' %}
62
<td class="spacer"></td>
63
{% get_comment_count for map as ccount %}
64
<td class="grey">Comments:</td><td>{{ ccount }}</td>
67
<td class="grey">Upload:</td>
68
<td colspan="4">by {{ map.uploader|user_link }} at {{ map.pub_date|custom_date:user }}</td>
70
{% if not map.world_name %}
72
<td colspan="5"><strong>This map requires a version of Widelands newer than build
73
{% if map.nr_players > 8 %}
82
<td class="grey">Downloads:</td><td>{{ map.nr_downloads }}</td>
83
<td class="spacer"></td>
85
<a class="button" href="{% url 'wlmaps_download' map.slug %}">
86
<img src="{% static 'img/arrow_down_short.png' %}" alt ="" class="middle" />
87
<span class="middle">Direct Download</span>