Design fix

This commit is contained in:
Wedge 2016-06-16 15:15:17 +03:00
parent 0395b5cb8f
commit 2961b9e2f2
1 changed files with 23 additions and 23 deletions

View File

@ -53,27 +53,27 @@
= render 'platforms/repositories/list', object: @repositories = render 'platforms/repositories/list', object: @repositories
= will_paginate @repositories = will_paginate @repositories
- if @platform.platform_type == 'personal' and @platform.visibility == 'open' - if @platform.platform_type == 'personal' and @platform.visibility == 'open'
.row .row.top-space
.col-md-6 ng-controller='PlatformSysReposController' ng-init="init(#{@platform.id})" .col-md-6 ng-controller='PlatformSysReposController' ng-init="init(#{@platform.id})"
rd-widget rd-widget
rd-widget-header title=t('layout.platforms.sys_repos_header') rd-widget-header title=t('layout.platforms.sys_repos_header')
rd-widget-body rd-widget-body
.row .row
.col-md-4 .col-md-4
b= t('layout.platforms.target_platform') b= t('layout.platforms.target_platform')
.col-md-8 .col-md-8
select ng-model='platform' ng-change='updateCommand()' select ng-model='platform' ng-change='updateCommand()'
option ng-repeat='platform in platforms' ng-value='platform' option ng-repeat='platform in platforms' ng-value='platform'
| {{ platform }} | {{ platform }}
.row .row
.col-md-4 .col-md-4
b= t('layout.platforms.target_architecture') b= t('layout.platforms.target_architecture')
.col-md-8 .col-md-8
select ng-model='arch' ng-change='updateCommand()' select ng-model='arch' ng-change='updateCommand()'
option ng-repeat='arch in arches' ng-value='arch' option ng-repeat='arch in arches' ng-value='arch'
| {{ arch }} | {{ arch }}
.row .row
br br
textarea.form-control readonly='readonly' ng-model='command' rows=3 ng-click='selectAll($event)' textarea.form-control readonly='readonly' ng-model='command' rows=3 ng-click='selectAll($event)'