blob: 394729f4904e258a22776eff5eb0bef1e1fca697 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% extends "euscan/_datatable.html" %}
{% load url from future %}
{% load djeuscan_helpers %}
{% load euscan_accounts_helpers %}
{% block title %}
{{ block.super }} - Overlay: {{ overlay }}
{% endblock %}
{% block content %}
<h2>
Overlay: {{ overlay }}
{% if user.is_authenticated %}
<span class="pull-right padding-bottom10">
{% favourite_buttons "overlay" overlay %}
</span>
{% endif %}
</h2>
<p><em>{{ overlay.description }}</em></p>
<p><a target="_blank" href="{{ overlay.homepage }}">Homepage</a></p>
{% packages packages %}
<script src="{{ STATIC_URL }}js/favourite.js" type="text/javascript"></script>
{% endblock %}
|