mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
16 lines
339 B
HTML
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 %} |