Skip to content
Snippets Groups Projects
Commit c7791ecc authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Remove unused templates

parent eac589df
No related branches found
No related tags found
No related merge requests found
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load material_form i18n %}
{% block browser_title %}{% blocktrans %}Create automatic plan{% endblocktrans %}{% endblock %}
{% block page_title %}{% blocktrans %}Create automatic plan{% endblocktrans %}{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{% form form=form %}{% endform %}
{% include "core/partials/save_button.html" %}
</form>
{% endblock %}
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load material_form i18n %}
{% block browser_title %}{% blocktrans %}Edit automatic plan{% endblocktrans %}{% endblock %}
{% block page_title %}{% blocktrans %}Edit automatic plan{% endblocktrans %}{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{% form form=form %}{% endform %}
{% include "core/partials/save_button.html" %}
</form>
{% endblock %}
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load i18n %}
{% load render_table from django_tables2 %}
{% block browser_title %}{% blocktrans %}Automatic plans{% endblocktrans %}{% endblock %}
{% block page_title %}{% blocktrans %}Automatic plans{% endblocktrans %}{% endblock %}
{% block content %}
<a class="btn green waves-effect waves-light" href="{% url 'create_automatic_plan' %}">
<i class="material-icons iconify left" data-icon="mdi:add"></i>
{% trans "Create automatic plan" %}
</a>
{% render_table table %}
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment