diff --git a/src/newsreader/news/collection/templates/news/collection/views/import.html b/src/newsreader/news/collection/templates/news/collection/views/import.html index b9df9a2..63b55e8 100644 --- a/src/newsreader/news/collection/templates/news/collection/views/import.html +++ b/src/newsreader/news/collection/templates/news/collection/views/import.html @@ -5,6 +5,6 @@ {% block content %}
{% url "news:collection:rules" as cancel_url %} - {% include "form.html" with form=form title="Import an OPML file" cancel_url=cancel_url %} + {% include "form.html" with form=form title="Import an OPML file" cancel_url=cancel_url confirm_text="Import rules" %}
{% endblock %} diff --git a/src/newsreader/news/collection/templates/news/collection/views/rule-create.html b/src/newsreader/news/collection/templates/news/collection/views/rule-create.html index c444885..d037b60 100644 --- a/src/newsreader/news/collection/templates/news/collection/views/rule-create.html +++ b/src/newsreader/news/collection/templates/news/collection/views/rule-create.html @@ -5,6 +5,6 @@ {% block content %}
{% url "news:collection:rules" as cancel_url %} - {% include "form/form.html" with form=form title="Create rule" cancel_url=cancel_url %} + {% include "form/form.html" with form=form title="Create rule" cancel_url=cancel_url confirm_text="Create rule" %}
{% endblock %} diff --git a/src/newsreader/news/collection/templates/news/collection/views/rule-update.html b/src/newsreader/news/collection/templates/news/collection/views/rule-update.html index 6a3c46a..2bf46e3 100644 --- a/src/newsreader/news/collection/templates/news/collection/views/rule-update.html +++ b/src/newsreader/news/collection/templates/news/collection/views/rule-update.html @@ -5,6 +5,6 @@ {% block content %}
{% url "news:collection:rules" as cancel_url %} - {% include "form/form.html" with form=form title="Update rule" cancel_url=cancel_url %} + {% include "form/form.html" with form=form title="Update rule" cancel_url=cancel_url confirm_text="Save rule" %}
{% endblock %} diff --git a/src/newsreader/news/core/templates/news/core/views/category-create.html b/src/newsreader/news/core/templates/news/core/views/category-create.html index 21eb48a..c25bd45 100644 --- a/src/newsreader/news/core/templates/news/core/views/category-create.html +++ b/src/newsreader/news/core/templates/news/core/views/category-create.html @@ -5,6 +5,6 @@ {% block content %}
{% url "news:core:categories" as cancel_url %} - {% include "form/form.html" with form=form title="Create category" cancel_url=cancel_url %} + {% include "form/form.html" with form=form title="Create category" cancel_url=cancel_url confirm_text="Create category" %}
{% endblock %} diff --git a/src/newsreader/news/core/templates/news/core/views/category-update.html b/src/newsreader/news/core/templates/news/core/views/category-update.html index 60e215c..107e2dc 100644 --- a/src/newsreader/news/core/templates/news/core/views/category-update.html +++ b/src/newsreader/news/core/templates/news/core/views/category-update.html @@ -5,6 +5,6 @@ {% block content %}
{% url "news:core:categories" as cancel_url %} - {% include "form/form.html" with form=form title="Update category" cancel_url=cancel_url %} + {% include "form/form.html" with form=form title="Update category" cancel_url=cancel_url confirm_text="Save category" %}
{% endblock %}