From 1ce72d3aeee134e98f43c3b6736636464aa1c510 Mon Sep 17 00:00:00 2001 From: gfawcett Date: Sat, 2 Oct 2010 19:57:48 +0000 Subject: [PATCH] physical items don't need an "About this item" link. git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@1026 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- conifer/syrup/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conifer/syrup/models.py b/conifer/syrup/models.py index 200d554..98ab28f 100644 --- a/conifer/syrup/models.py +++ b/conifer/syrup/models.py @@ -596,7 +596,7 @@ class Item(BaseModel): def needs_meta_link(self): """Should an 'About' link be displayed for this item?""" - return self.item_type in ('ELEC', 'URL', 'PHYS') + return self.item_type in ('ELEC', 'URL') def item_url(self, suffix='', force_local_url=False): # I'm not fond of this being here. I think I'll leave this and -- 2.11.0