You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/09/05 20:21:01 UTC

[36/50] git commit: [#4595] ticket:421 Show only usernames in admins column

[#4595] ticket:421 Show only usernames in admins column


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/22f7c861
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/22f7c861
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/22f7c861

Branch: refs/heads/cj/6596
Commit: 22f7c861f8098d1ad4bd83f3a60c2689dcdbd489
Parents: f59fcc2
Author: Igor Bondarenko <je...@gmail.com>
Authored: Mon Sep 2 10:49:40 2013 +0300
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Wed Sep 4 13:19:54 2013 +0000

----------------------------------------------------------------------
 Allura/allura/templates/site_admin_new_projects.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/22f7c861/Allura/allura/templates/site_admin_new_projects.html
----------------------------------------------------------------------
diff --git a/Allura/allura/templates/site_admin_new_projects.html b/Allura/allura/templates/site_admin_new_projects.html
index bd97dc1..213ab43 100644
--- a/Allura/allura/templates/site_admin_new_projects.html
+++ b/Allura/allura/templates/site_admin_new_projects.html
@@ -47,7 +47,7 @@
       <td><small>{{ p.short_description }}</small></td>
       <td><small>{{ p.summary }}</small></td>
       <td><small>{{ p.external_homepage|urlize(22) }}</small></td>
-      <td><small>{{ p.admins()|join(' ') }}</small></td>
+      <td>{% for a in p.admins() %}<small><a href="{{ a.url() }}">{{ a.username }}</a></small> {% endfor %}</td>
     </tr>
     {% endfor %}
   </table>