You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {{template "base/head" .}}
- <div class="repository balance view">
- {{template "repo/header" .}}
- <div class="ui container">
- <h4 class="ui top attached header">
- {{.i18n.Tr "repo.balance.total_view"}}
- </h4>
-
- <div class="ui attached segment">
- {{.i18n.Tr "repo.balance.available"}}121
- </div>
-
- <div class="ui attached segment">
- {{.i18n.Tr "repo.balance.disable"}}121
- </div>
- <!-- </div> -->
- </div>
- </div>
-
- </div>
- {{template "base/footer" .}}
-
- <script>
- $('.eye.icon').click(function(){
- $('.eye.icon').toggleClass('slash')
- // console.log(this)
- if($(this).hasClass('slash')){
- $(this).next().css('display', 'none')
- }else{
- $(this).next().css('display', 'block')
- }
-
- })
- </script>
|