~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wlmaps/base.html

  • Committer: franku
  • Date: 2018-11-19 17:19:29 UTC
  • mfrom: (502.1.6 django_ratings)
  • Revision ID: somal@arcor.de-20181119171929-zclpax3wz59lnu5l
replaced djangoratings with django-star-rating

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "base.html" %}
 
2
{% load static %}
2
3
 
3
4
{% comment %}
4
5
   vim:ft=htmldjango
7
8
{% block extra_head %}
8
9
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}css/forum.css" />
9
10
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}css/maps.css" />
 
11
<link rel="stylesheet" href="{% static 'star-ratings/css/star-ratings.css' %}">
 
12
<script type="text/javascript" src="{% static 'star-ratings/js/dist/star-ratings.min.js' %}"></script>
10
13
{{block.super}}
11
14
{% endblock %}
12
15