mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-13 17:05:50 +01:00
Fix Branches, Tags and Milestones presentaion
This commit is contained in:
@@ -12,11 +12,9 @@
|
|||||||
<th style="background-color: #eee;">
|
<th style="background-color: #eee;">
|
||||||
<span class="small">
|
<span class="small">
|
||||||
<a class="button-link@if(state == "open"){ selected}" href="?state=open">
|
<a class="button-link@if(state == "open"){ selected}" href="?state=open">
|
||||||
<i class="octicon octicon-milestone @(if(state == "open"){"active"})"></i>
|
|
||||||
@milestones.count(_._1.closedDate.isEmpty) Open
|
@milestones.count(_._1.closedDate.isEmpty) Open
|
||||||
</a>
|
</a>
|
||||||
<a class="button-link@if(state == "closed"){ selected}" href="?state=closed">
|
<a class="button-link@if(state == "closed"){ selected}" href="?state=closed">
|
||||||
<i class="octicon octicon-milestone @(if(state == "closed"){"active"})"></i>
|
|
||||||
@milestones.count(_._1.closedDate.isDefined) Closed
|
@milestones.count(_._1.closedDate.isDefined) Closed
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
@import gitbucket.core.view.helpers._
|
@import gitbucket.core.view.helpers._
|
||||||
@html.main(s"${repository.owner}/${repository.name}", Some(repository)) {
|
@html.main(s"${repository.owner}/${repository.name}", Some(repository)) {
|
||||||
@html.menu("branches", repository){
|
@html.menu("branches", repository){
|
||||||
<h1>Branches</h1>
|
|
||||||
<table class="table table-bordered table-hover table-issues branches">
|
<table class="table table-bordered table-hover table-issues branches">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
@import gitbucket.core.view.helpers._
|
@import gitbucket.core.view.helpers._
|
||||||
@html.main(s"${repository.owner}/${repository.name}", Some(repository)) {
|
@html.main(s"${repository.owner}/${repository.name}", Some(repository)) {
|
||||||
@html.menu("tags", repository){
|
@html.menu("tags", repository){
|
||||||
<h1>Tags</h1>
|
|
||||||
<table class="table table-bordered">
|
<table class="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user