templates: expose IDs of objects in advanced views. Usefull for API or ishell.

This commit is contained in:
Marcin Kuzminski 2018-12-27 11:39:38 +01:00
parent 8e41ca4f0a
commit 17d63e0042
4 changed files with 4 additions and 0 deletions

View file

@ -2,6 +2,7 @@
<%
elems = [
(_('Repository ID'), c.rhodecode_db_repo.repo_id, '', ''),
(_('Owner'), lambda:base.gravatar_with_user(c.rhodecode_db_repo.user.email), '', ''),
(_('Created on'), h.format_date(c.rhodecode_db_repo.created_on), '', ''),
(_('Updated on'), h.format_date(c.rhodecode_db_repo.updated_on), '', ''),