From 4e24eca25d4dacb00934dd1eae85912925ae6eee Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 29 Feb 2020 20:30:45 -0500 Subject: [PATCH] backups: cosmetic: Rename .inc file to .html Tests performed: - Go to backups page. - Take a backup and see it listed in list of repositories. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Veiko Aasa --- plinth/modules/backups/templates/backups.html | 2 +- .../{backups_repository.inc => backups_repository.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename plinth/modules/backups/templates/{backups_repository.inc => backups_repository.html} (100%) diff --git a/plinth/modules/backups/templates/backups.html b/plinth/modules/backups/templates/backups.html index bce7f56c1..b519e79b6 100644 --- a/plinth/modules/backups/templates/backups.html +++ b/plinth/modules/backups/templates/backups.html @@ -58,7 +58,7 @@

{% trans 'Existing Backups' %}

{% for repository in repositories %} - {% include "backups_repository.inc" with uuid=repository.uuid %} + {% include "backups_repository.html" with uuid=repository.uuid %} {% endfor %} {% endblock %} diff --git a/plinth/modules/backups/templates/backups_repository.inc b/plinth/modules/backups/templates/backups_repository.html similarity index 100% rename from plinth/modules/backups/templates/backups_repository.inc rename to plinth/modules/backups/templates/backups_repository.html