blob: b6d4ffd42d4a3c515d9915d46ee9c2487aaed45d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "ishtar/sheet.html" %}
{% load i18n window_tables window_header from_dict window_field %}
{% block head_title %}{% trans "Find basket" %}{% endblock %}
{% block content %}
{% window_nav item window_id 'show-findbasket' 'select_itemsinbasket' %}
<p class="window-refs">{{ item.label|default:"" }}</p>
{% field "Owned by" item.user %}
{% field "Comment" item.comment %}
{% dynamic_table_document finds 'finds_for_ope' 'basket' item.pk 'TABLE_COLS_FOR_OPE' output %}
{% endblock %}
|