Add slugs to project manage page

Summary: Minor, just shows the slugs on the manage project page, also normalized language to "details"

Test Plan: review a project with slugs, description.

Reviewers: amckinley

Reviewed By: amckinley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D17985
This commit is contained in:
Chad Little
2017-05-24 10:18:21 -07:00
parent 684ce701fb
commit c4392ba067
3 changed files with 15 additions and 2 deletions

View File

@@ -166,4 +166,12 @@ abstract class PhabricatorProjectController extends PhabricatorController {
->buildResponse();
}
public function renderHashtags(array $tags) {
$result = array();
foreach ($tags as $key => $tag) {
$result[] = '#'.$tag;
}
return implode(', ', $result);
}
}