{% extends 'front_template.html' %} {% load booking_tags %} {% block body %} {% if duck_list %} {% for duck in duck_list %}
{{ duck }}
{{ duck.species }}
Employee for {{ duck.age|age_format:1 }}
Location: {{ duck.location }}
DPX: {{ duck.dpx }}
book-button
Competence list
namesugg-button
adopt-button
{% endfor %}
{% endif %} {% endblock %} {% block endscript %} $('.complist-button').click(function() { duck_id = $(this).attr('id').replace(/^duck-complist-/, ''); if (isNaN(duck_id) || (duck_id.trim() == '')) { return; } var url = Urls['api:complist'](duck_id); var dialog = $('
').appendTo('body'); $.getJSON(url, function(data) { var items = []; $.each(data, function(key, item) { items.push('
  • ' + item.name + ' (' + item.level + ')
  • '); }); $('