Files
recipes/cookbook/templates/batch/import.html
2018-03-30 23:56:49 +02:00

16 lines
339 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% load django_tables2 %}
{% block title %}{% trans 'Imported Recipes' %}{% endblock %}
{% block content %}
<h3>{% trans 'Update imported Recipes' %}</h3>
<br>
<button class="btn btn-primary">Auto-Import all</button>
<br>
{% render_table imported_recipes %}
{% endblock %}