diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-22 08:32:44 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-22 08:32:44 +0200 |
commit | 2319c633a92965b045f1c34810dd605d08d16a10 (patch) | |
tree | 7a3e627da6cb5e7f3fd0d5ba507e94a345e78ee8 /archaeological_context_records/templates | |
parent | 81a350fcca34b4252a53bd81a04f5788ce7ab910 (diff) | |
download | Ishtar-2319c633a92965b045f1c34810dd605d08d16a10.tar.bz2 Ishtar-2319c633a92965b045f1c34810dd605d08d16a10.zip |
Add columns to find list (refs #1325)
Diffstat (limited to 'archaeological_context_records/templates')
-rw-r--r-- | archaeological_context_records/templates/ishtar/sheet_contextrecord.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html index 41e8ebe2a..38c8d2160 100644 --- a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html +++ b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html @@ -108,6 +108,8 @@ <th>{% trans "Weight" %}</th> <th>{% trans "Numbers" %}</th> <th>{% trans "Parcel" %}</th> + <th>{% trans "Container ref." %}</th> + <th>{% trans "Warehouse" %}</th> <th class='link'> </th> </tr> {% for find in item.base_finds.all %} @@ -123,6 +125,8 @@ <td>{{ find.get_last_find.weight|default:"" }}</td> <td>{{ find.get_last_find.item_number }}</td> <td>{{ item.context_record.parcel.short_label }}</td> + <td class='ref'>{{ find.get_last_find.container.reference|default:""}}</td> + <td class='string'>{{ find.get_last_find.container.location|default:""}}</td> <td class='link'><a href="#">{% trans "Details" %}</a></td> {#<a href="#" onclick='load_window("{% url show-find find.pk%}");'>{%trans "Details"%}</a></td>#} </tr> |