diff --git a/fec/home/models.py b/fec/home/models.py index af5ea8151b..efcad5a982 100644 --- a/fec/home/models.py +++ b/fec/home/models.py @@ -64,7 +64,9 @@ ('image', ImageChooserBlock()), ('table', TableBlock(table_options=core_table_options)), ('custom_table', CustomTableBlock()), - ('contact', ContactInfoBlock()) + ('contact', ContactInfoBlock()), + ('internal_button', InternalButtonBlock()), + ('external_button', ExternalButtonBlock()), ], ) diff --git a/tasks.py b/tasks.py index fd92d4ffee..2bbc82e325 100644 --- a/tasks.py +++ b/tasks.py @@ -75,7 +75,7 @@ def _detect_space(repo, branch=None, yes=False): ('stage', lambda _, branch: branch.startswith('release')), ('dev', lambda _, branch: branch == 'develop'), # Uncomment below and adjust branch name to deploy desired feature branch to the feature space - #('feature', lambda _, branch: branch == 'feature/the-branch-name'), + ('feature', lambda _, branch: branch == 'feature/2935-internal-external-link-record-and-example-templates'), )