diff --git a/data/interfaces/default/config.html b/data/interfaces/default/config.html
index 81a584da..37c6a4ef 100644
--- a/data/interfaces/default/config.html
+++ b/data/interfaces/default/config.html
@@ -168,6 +168,68 @@
+ <%
+ if config['nzbget_priority'] == -100:
+ prio_verylow = 'selected="selected"'
+ prio_low = ''
+ prio_normal = ''
+ prio_high = ''
+ prio_veryhigh = ''
+ prio_force = ''
+ elif config['nzbget_priority'] == -50:
+ prio_verylow = ''
+ prio_low = 'selected="selected"'
+ prio_normal = ''
+ prio_high = ''
+ prio_veryhigh = ''
+ prio_force = ''
+ elif config['nzbget_priority'] == 0:
+ prio_verylow = ''
+ prio_low = ''
+ prio_normal = 'selected="selected"'
+ prio_high = ''
+ prio_veryhigh = ''
+ prio_force = ''
+ elif config['nzbget_priority'] == 50:
+ prio_verylow = ''
+ prio_low = ''
+ prio_normal = ''
+ prio_high = 'selected="selected"'
+ prio_veryhigh = ''
+ prio_force = ''
+ elif config['nzbget_priority'] == 100:
+ prio_verylow = ''
+ prio_low = ''
+ prio_normal = ''
+ prio_high = ''
+ prio_veryhigh = 'selected="selected"'
+ prio_force = ''
+ elif config['nzbget_priority'] == 900:
+ prio_verylow = ''
+ prio_low = ''
+ prio_normal = ''
+ prio_high = ''
+ prio_veryhigh = ''
+ prio_force = 'selected="selected"'
+ else:
+ prio_verylow = ''
+ prio_low = ''
+ prio_normal = 'selected="selected"'
+ prio_high = ''
+ prio_veryhigh = ''
+ prio_force = ''
+ %>
+
+
+
+