~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wlmaps/edit_comment.html

  • Committer: franku
  • Date: 2018-11-22 11:08:51 UTC
  • Revision ID: somal@arcor.de-20181122110851-77riof0o4dx2zcm6
split user uploaded content from static content

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "wlmaps/base.html" %}
 
2
{% load static %}
2
3
 
3
4
{% block content_header %}
4
5
    <h1>Edit comment: {{ map.name }}</h1>
10
11
        {{ form.uploader_comment.label_tag }}
11
12
                        <span class="posRight">
12
13
                                <a href="/wiki/WikiSyntax" title="Opens new Tab/Window" target="_blank">
13
 
                                        <img src="{{ MEDIA_URL }}img/menu_help.png" alt="Help on Syntax" class="middle">
 
14
                                        <img src="{% static 'img/menu_help.png' %}" alt="Help on Syntax" class="middle">
14
15
                                        Help on Syntax
15
16
                                </a>
16
17
                        </span>
21
22
                {% endif %}
22
23
                {% csrf_token %}
23
24
        <button type="submit">
24
 
            <img src="{{ MEDIA_URL }}forum/img/send.png" alt ="Submit" class="middle" />
 
25
            <img src="{% static 'forum/img/send.png' %}" alt ="Submit" class="middle" />
25
26
            <span class="middle">Submit</span>
26
27
        </button>
27
28
        </form>