diff --git a/nano/templates/door_control.tmpl b/nano/templates/door_control.tmpl
deleted file mode 100644
index 3c8dc66afb7..00000000000
--- a/nano/templates/door_control.tmpl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
- Main power is
- {{if data.main_power_loss == 0}}
- online
- {{else data.main_power_loss == -1}}
- offline
- {{else}}
- offline for {{:data.main_power_loss}} second{{:data.main_power_loss == 1 ? '' : 's'}}
- {{/if}}.
-
-
- {{:helper.link(data.main_power_loss ? 'Disabled' : 'Disable', null, {'command' : 'main_power'}, data.main_power_loss == 0 ? null : 'disabled', data.main_power_loss == 0 ? 'redButton' : null)}}
-
-
-
-
-
- Backup power is
- {{if data.backup_power_loss == 0}}
- online
- {{else data.backup_power_loss == -1}}
- offline
- {{else}}
- offline for {{:data.backup_power_loss}} second{{:data.backup_power_loss == 1 ? '' : 's'}}
- {{/if}}.
-
-
- {{:helper.link(data.backup_power_loss ? 'Disabled' : 'Disable', null, {'command' : 'backup_power'}, data.backup_power_loss == 0 ? null : 'disabled', data.backup_power_loss == 0 ? 'redButton' : null)}}
-
-
-
-
-
- Electrified Status:
-
-
- {{:helper.link('Offline' , null, {'command' : 'electrify_permanently', 'activate' : "0" }, data.electrified == 0 ? 'selected' : null)}}
- {{:helper.link(data.electrified <= 0 ? 'Temporary (30s)' : 'Temporary (' + data.electrified +'s)', null, {'command' : 'electrify_temporary', 'activate' : "1"}, null, data.electrified > 0 ? 'redButton' : null)}}
- {{:helper.link('Permanent', null, {'command' : 'electrify_permanently', 'activate' : "1"}, data.electrified == -1 ? 'redButton' : null)}}
-
-
-
-
-
-
- {{for data.commands}}
-
- | {{:value.name}}: |
- {{:helper.link(value.enabled, null, {'command' : value.command, 'activate' : value.act ? 1 : 0}, value.active ? 'selected' : null)}} |
- {{:helper.link(value.disabled, null, {'command' : value.command, 'activate' : value.act ? 0 : 1}, !value.active ? (value.danger ? 'redButton' : 'selected') : null)}} |
-
- {{/for}}
-