TandoorRecipes/cookbook/templates/batch/import.html
2018-05-03 21:46:41 +02:00

19 lines
459 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% load django_tables2 %}
{% block title %}{% trans 'Imported Recipes' %}{% endblock %}
{% block content %}
<h3>{% trans 'Imported Recipes' %}</h3>
<br>
<form action="{% url 'batch_import_all' %}" method="post">
{% csrf_token %}
<input type="submit" value="{% trans 'import all' %}" class="btn btn-primary"/>
</form>
<br>
{% render_table imported_recipes %}
{% endblock %}