21 lines
486 B
HTML
21 lines
486 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
{% load django_tables2 %}
|
|
|
|
{% block title %}{% trans 'Import Recipes' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>
|
|
{% trans 'Import Recipes' %}
|
|
<small class="text-muted">{% trans 'Manage all paths that should be imported' %}</small>
|
|
</h3>
|
|
|
|
<form method="POST" class="post-form">{% csrf_token %}
|
|
{% crispy form %}
|
|
</form>
|
|
|
|
{% render_table monitored_paths %}
|
|
|
|
{% endblock %} |