# HG changeset patch # User Todd Larsen # Date 1227343494 0 # Node ID 217921e76f500c328005708d3b41637cc47d6848 # Parent 10f9da7e0d17424f73be129c3be7dbd36919e011 Include name of entity in the text of the link to the read-only public view present in the common edit template. Provide a simple method in the Work Model class that aliases the existing 'title' Property to 'name'. Patch by: Todd Larsen diff -r 10f9da7e0d17 -r 217921e76f50 app/soc/models/work.py --- a/app/soc/models/work.py Sat Nov 22 08:40:10 2008 +0000 +++ b/app/soc/models/work.py Sat Nov 22 08:44:54 2008 +0000 @@ -91,3 +91,9 @@ is_featured.help_text = ugettext_lazy( 'Field used to indicate if a Work should be featured, for example,' ' in the sidebar menu.') + + def name(self): + """Alias 'title' Property as 'name' for use in common templates. + """ + return self.title + diff -r 10f9da7e0d17 -r 217921e76f50 app/soc/templates/soc/models/edit.html --- a/app/soc/templates/soc/models/edit.html Sat Nov 22 08:40:10 2008 +0000 +++ b/app/soc/templates/soc/models/edit.html Sat Nov 22 08:44:54 2008 +0000 @@ -20,7 +20,8 @@ {{ page_name }} {% if entity %} - (Public page) + {% if entity.name %}{{ entity.name }} {% endif %}(public view) {% endif %} {% endblock %}