2016-06-25 21:12:17 +02:00
< div class = "container-fluid container-fluid-custom" element-height ng-controller = "SearchController as vm" >
2016-07-01 12:37:17 +02:00
< modal-dialog modal-title = "// vm.modalTitle //" modal-message = '// vm.modalMessage //' confirm-only = "vm.confirmOnly" action = "vm.action()" > < / modal-dialog >
2016-05-19 06:50:32 +02:00
< div class = "container container-custom" >
< div class = "row extend-height" >
< div class = "section" >
2016-07-01 12:37:17 +02:00
< h1 class = "col-md-12 col-md-offset-2 main-title title-color" > // 'search_result' | tr //< / h1 >
2016-05-19 06:50:32 +02:00
< div class = "row" >
< div class = "col-md-12 col-md-offset-2 main-content" >
2016-07-06 10:39:40 +02:00
< h4 class = "page-header title-color underlined" > // 'projects' | tr // < span class = "badge" > //vm.project.length//< / span > < / h4 >
2016-05-19 06:50:32 +02:00
< div class = "search-result" >
< ul >
2016-06-16 08:10:35 +02:00
< li ng-repeat = "p in vm.project" > < a href = "/repository#/repositories?project_id=//p.id//&is_public=//p.public === 1//" > //p.name//< / a > < / li >
2016-05-19 06:50:32 +02:00
< / ul >
< / div >
2016-07-06 10:39:40 +02:00
< h4 class = "page-header title-color underlined" > // 'repositories' | tr // < span class = "badge" > //vm.repository.length//< / span > < / h4 >
2016-05-19 06:50:32 +02:00
< div class = "search-result" >
< ul >
2016-06-16 08:10:35 +02:00
< li ng-repeat = "r in vm.repository" > < a href = "/repository#/repositories?project_id=//r.project_id//&is_public=//r.project_public === 1//#//r.repository_name//" > //r.repository_name//< / a > < / li >
2016-05-19 06:50:32 +02:00
< / ul >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >