2016-11-09 16:49:19 +00:00
|
|
|
{% extends "core/base.jinja" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{% trans %}Stock list{% endtrans %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% if stock_list %}
|
|
|
|
<h3>{% trans %}Stock list{% endtrans %}</h3>
|
|
|
|
<ul>
|
|
|
|
{% for s in stock_list.order_by('name') %}
|
|
|
|
<li>
|
|
|
|
{% if user.can_edit(s) %}
|
2016-12-29 10:58:19 +00:00
|
|
|
<a href="{{ url('stock:items_list', stock_id=s.id) }}">{{ s }}</a>
|
2016-11-09 16:49:19 +00:00
|
|
|
- <a href="{{ url('stock:edit', stock_id=s.id) }}">Edit</a>
|
2016-12-28 18:25:43 +00:00
|
|
|
- <a href="{{ url('stock:shoppinglist_list', stock_id=s.id)}}">{% trans %}Shopping lists{% endtrans %}</a>
|
2016-11-09 16:49:19 +00:00
|
|
|
{% endif %}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% else %}
|
|
|
|
{% trans %}There is no stocks in this website.{% endtrans %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|