Commit 12c8f092 by Sarina Canelake

Merge pull request #3580 from edx/sarina/show-enabled-checkbox

Expose "enabled" checkbox in Embargo admin
parents 9d2b85d3 af31f31b
...@@ -34,7 +34,7 @@ class EmbargoedStateAdmin(ConfigurationModelAdmin): ...@@ -34,7 +34,7 @@ class EmbargoedStateAdmin(ConfigurationModelAdmin):
form = EmbargoedStateForm form = EmbargoedStateForm
fieldsets = ( fieldsets = (
(None, { (None, {
'fields': ('embargoed_countries',), 'fields': ('enabled', 'embargoed_countries',),
'description': textwrap.dedent("""Enter the two-letter ISO-3166-1 Alpha-2 'description': textwrap.dedent("""Enter the two-letter ISO-3166-1 Alpha-2
code of the country or countries to embargo in the following box. For help, code of the country or countries to embargo in the following box. For help,
see <a href="http://en.wikipedia.org/wiki/ISO_3166-1#Officially_assigned_code_elements"> see <a href="http://en.wikipedia.org/wiki/ISO_3166-1#Officially_assigned_code_elements">
...@@ -51,7 +51,7 @@ class IPFilterAdmin(ConfigurationModelAdmin): ...@@ -51,7 +51,7 @@ class IPFilterAdmin(ConfigurationModelAdmin):
form = IPFilterForm form = IPFilterForm
fieldsets = ( fieldsets = (
(None, { (None, {
'fields': ('whitelist', 'blacklist'), 'fields': ('enabled', 'whitelist', 'blacklist'),
'description': textwrap.dedent("""Enter specific IP addresses to explicitly 'description': textwrap.dedent("""Enter specific IP addresses to explicitly
whitelist (not block) or blacklist (block) in the appropriate box below. whitelist (not block) or blacklist (block) in the appropriate box below.
Separate IP addresses with a comma. Do not surround with quotes. Separate IP addresses with a comma. Do not surround with quotes.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment