19 lines
459 B
HTML
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 %} |