34d3bd714d
* Refactored templates and templatetags * Added unfavourite views * Added button to favourite/unfavourite package * Panel for showing favourited objects Signed-off-by: volpino <fox91@anche.no>
16 lines
241 B
HTML
16 lines
241 B
HTML
{% extends "euscan/_datatable.html" %}
|
|
|
|
{% load euscan %}
|
|
{% load url from future %}
|
|
|
|
{% block title %}
|
|
{{ block.super }} - herds
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Herds</h2>
|
|
|
|
{% herds_table herds request.GET.extras %}
|
|
|
|
{% endblock %}
|