mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-10 23:45:50 +01:00
22 lines
1.0 KiB
HTML
22 lines
1.0 KiB
HTML
@(activities: List[gitbucket.core.model.Activity],
|
|
recentRepositories: List[gitbucket.core.service.RepositoryService.RepositoryInfo],
|
|
userRepositories: List[gitbucket.core.service.RepositoryService.RepositoryInfo])(implicit context: gitbucket.core.controller.Context)
|
|
@import gitbucket.core.view.helpers
|
|
@gitbucket.core.html.main("GitBucket"){
|
|
@gitbucket.core.dashboard.html.sidebar(recentRepositories, userRepositories){
|
|
@context.settings.information.map { information =>
|
|
<div class="alert alert-info" style="background-color: white; color: #555; border-color: #4183c4; font-size: small; line-height: 120%;">
|
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
@Html(information)
|
|
</div>
|
|
}
|
|
@gitbucket.core.dashboard.html.tab()
|
|
<div class="container">
|
|
<div class="pull-right">
|
|
<a href="@context.path/activities.atom"><img src="@helpers.assets/common/images/feed.png" alt="activities"></a>
|
|
</div>
|
|
@gitbucket.core.helper.html.activities(activities)
|
|
</div>
|
|
}
|
|
}
|