comparison rhodecode/templates/base/base.html @ 3910:36f7562a5919 beta

Implements #842 RhodeCode version disclosure. - it's now implemented as visual option in settings
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 28 May 2013 23:12:31 +0200
parents 100be6988bb0
children 5293d4bbb1ea
comparison
equal deleted inserted replaced
3909:e87298ccdfdb 3910:36f7562a5919
40 <div> 40 <div>
41 <p class="footer-link"> 41 <p class="footer-link">
42 ${_('Server instance: %s') % c.rhodecode_instanceid if c.rhodecode_instanceid else ''} 42 ${_('Server instance: %s') % c.rhodecode_instanceid if c.rhodecode_instanceid else ''}
43 </p> 43 </p>
44 <p class="footer-link-right"> 44 <p class="footer-link-right">
45 <a href="${h.url('rhodecode_official')}">RhodeCode ${c.rhodecode_version}</a> 45 <a href="${h.url('rhodecode_official')}">
46 RhodeCode
47 %if c.visual.show_version:
48 ${c.rhodecode_version}
49 %endif
50 </a>
46 &copy; 2010-${h.datetime.today().year} by Marcin Kuzminski and others 51 &copy; 2010-${h.datetime.today().year} by Marcin Kuzminski and others
47 &ndash; <a href="${h.url('bugtracker')}">${_('Report a bug')}</a> 52 &ndash; <a href="${h.url('bugtracker')}">${_('Report a bug')}</a>
48 </p> 53 </p>
49 </div> 54 </div>
50 </div> 55 </div>