1
0
mirror of https://github.com/TandoorRecipes/recipes.git synced 2026-01-11 09:07:12 -05:00
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 %}