mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-09 06:55:54 +01:00
18 lines
597 B
HTML
18 lines
597 B
HTML
@(value: String = "", prefix: String = "", mini: Boolean = true, style: String = "", right: Boolean = false)(body: Html)
|
|
<div class="btn-group"@if(style.nonEmpty){ style="@style"}>
|
|
<button class="btn dropdown-toggle@if(mini){ btn-mini} else { btn-small}" data-toggle="dropdown">
|
|
@if(value.isEmpty){
|
|
<i class="icon-cog"></i>
|
|
} else {
|
|
@if(prefix.nonEmpty){
|
|
<span class="muted">@prefix:</span>
|
|
}
|
|
<span class="strong">@value</span>
|
|
}
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu@if(right){ pull-right}">
|
|
@body
|
|
</ul>
|
|
</div>
|