Sith/stock/templates/stock/stock_take_items.jinja

18 lines
536 B
Django/Jinja
Raw Permalink Normal View History

2017-01-03 13:50:49 +00:00
{% extends "core/base.jinja" %}
{% from 'core/macros.jinja' import user_profile_link %}
{% block title %}
2017-01-08 10:46:25 +00:00
{% trans s = stock %}Take items from {{ s }}{% endtrans %}
2017-01-03 13:50:49 +00:00
{% endblock %}
{% block content %}
2017-01-08 10:46:25 +00:00
<h3>{% trans s = stock %}Take items from {{ s }}{% endtrans %}</h3>
2017-01-03 13:50:49 +00:00
<div>
<form method="post" action="" class="inline" style="display:inline">
{% csrf_token %}
{{ form.as_p() }}
<p><input type="submit" value="{% trans %}Take items{% endtrans %}" /></p>
</form>
</div>
{% endblock %}