Skip to content

Commit

Permalink
Merge pull request #3338 from fecgov/feature/2935-internal-external-l…
Browse files Browse the repository at this point in the history
…ink-record-and-example-templates

Add internal/external links to RecordPage template
  • Loading branch information
dorothyyeager authored Nov 7, 2019
2 parents f39978f + b59697b commit f7356e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion fec/home/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()),
],
)

Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
)


Expand Down

0 comments on commit f7356e8

Please sign in to comment.