diff --git a/app/templates/views/templates/copy.html b/app/templates/views/templates/copy.html
index 7aac461ec..6bd5f74ba 100644
--- a/app/templates/views/templates/copy.html
+++ b/app/templates/views/templates/copy.html
@@ -2,15 +2,16 @@
{% from "components/live-search.html" import live_search %}
{% extends "withnav_template.html" %}
+{% set page_title = "Copy an existing template" %}
{% block service_page_title %}
- Copy an existing template
+ {{ page_title }}
{% endblock %}
{% block maincolumn_content %}
-
Copy an existing template
+ {{ page_title }}
{{ copy_folder_path(template_folder_path, current_service.id, from_service, current_user) }}
{% if not services_templates_and_folders.templates_to_show %}
@@ -18,7 +19,12 @@
This folder is empty
{% else %}
- {{ live_search(target_selector='#template-list .template-list-item', show=True, form=search_form) }}
+ {{ live_search(
+ target_selector='#template-list .template-list-item',
+ show=True,
+ form=search_form,
+ autofocus=True
+ ) }}