Only offer agreement download to non-crown for now

We don’t have the crown agreement in a nice downloadable format at the
moment.
This commit is contained in:
Chris Hill-Scott
2018-03-28 12:30:16 +01:00
parent c7ab9f7f1a
commit dca5546cbd
5 changed files with 28 additions and 8 deletions

View File

@@ -484,7 +484,7 @@ class AgreementInfo:
'agreement.'.format(self.owner)
)
if self.crown_status is not None:
if self.crown_status is False:
return ((
'{} <a href="{}">Download a copy</a>.'
).format(self._acceptance_required, download_link))
@@ -504,7 +504,7 @@ class AgreementInfo:
@property
def crown_status_or_404(self):
if self.crown_status is None:
if self.crown_status in {None, True}:
abort(404)
return self.crown_status