31 lines
722 B
HTML
31 lines
722 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
{% load django_tables2 %}
|
|
|
|
{% block title %}{% trans 'Batch edit Category' %}{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
{{ form.media }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>
|
|
{% trans 'Batch edit Recipes' %}
|
|
</h3>
|
|
|
|
<div class="card border-info" >
|
|
<div class="card-body text-info">
|
|
<p class="card-text">{% trans 'Add the specified keywords to all recipes containing a word' %}</p>
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
|
|
<form method="POST" class="post-form">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<input type="submit" value="Submit" class="btn btn-success">
|
|
</form>
|
|
|
|
{% endblock %} |