| @@ -573,7 +573,7 @@ authorized_oauth2_applications_description = You've granted access to your perso | |||||
| revoke_key = Revoke | revoke_key = Revoke | ||||
| revoke_oauth2_grant = Revoke Access | revoke_oauth2_grant = Revoke Access | ||||
| revoke_oauth2_grant_description = Revoking access for this third party application will prevent this application from accessing your data. Are you sure? | revoke_oauth2_grant_description = Revoking access for this third party application will prevent this application from accessing your data. Are you sure? | ||||
| revoke_oauth2_grant_success = You've revoked access successfully. | |||||
| revoke_oauth2_grant_success = You have revoked access successfully. | |||||
| twofa_desc = Two-factor authentication enhances the security of your account. | twofa_desc = Two-factor authentication enhances the security of your account. | ||||
| twofa_is_enrolled = Your account is currently <strong>enrolled</strong> in two-factor authentication. | twofa_is_enrolled = Your account is currently <strong>enrolled</strong> in two-factor authentication. | ||||
| @@ -770,6 +770,7 @@ cloudbrain_selection = select cloudbrain | |||||
| cloudbrain_platform_selection = Select the cloudbrain platform you want to use: | cloudbrain_platform_selection = Select the cloudbrain platform you want to use: | ||||
| confirm_choice = confirm | confirm_choice = confirm | ||||
| cloudbran1_tips = Only data in zip format can create cloudbrain tasks | cloudbran1_tips = Only data in zip format can create cloudbrain tasks | ||||
| cloudbrain_creator=Creator | |||||
| template.items = Template Items | template.items = Template Items | ||||
| template.git_content = Git Content (Default Branch) | template.git_content = Git Content (Default Branch) | ||||
| @@ -772,6 +772,7 @@ cloudbrain_selection=云脑选择 | |||||
| cloudbrain_platform_selection=选择您准备使用的云脑平台: | cloudbrain_platform_selection=选择您准备使用的云脑平台: | ||||
| confirm_choice=确定 | confirm_choice=确定 | ||||
| cloudbran1_tips=只有zip格式的数据集才能发起云脑任务 | cloudbran1_tips=只有zip格式的数据集才能发起云脑任务 | ||||
| cloudbrain_creator=创建者 | |||||
| template.items=模板选项 | template.items=模板选项 | ||||
| template.git_content=Git数据(默认分支) | template.git_content=Git数据(默认分支) | ||||
| @@ -256,10 +256,10 @@ | |||||
| <div class="row"> | <div class="row"> | ||||
| <!-- 任务名 --> | <!-- 任务名 --> | ||||
| <div class="six wide column"> | |||||
| <a class="title" href="{{$.Link}}/{{.JobID}}"> | |||||
| <div class="five wide column"> | |||||
| <a class="title" href="{{$.Link}}/{{.JobID}}" title="{{.JobName}}"> | |||||
| <span class="fitted">{{svg "octicon-tasklist" 16}}</span> | <span class="fitted">{{svg "octicon-tasklist" 16}}</span> | ||||
| <span class="fitted">{{.JobName}}</span> | |||||
| <span class="fitted text_over" style="width: 90%;">{{.JobName}}</span> | |||||
| </a> | </a> | ||||
| </div> | </div> | ||||
| @@ -272,7 +272,11 @@ | |||||
| <span class="">{{TimeSinceUnix .Cloudbrain.CreatedUnix $.Lang}}</span> | <span class="">{{TimeSinceUnix .Cloudbrain.CreatedUnix $.Lang}}</span> | ||||
| </div> | </div> | ||||
| <div class="seven wide column text right"> | |||||
| <div class="two wide column"> | |||||
| <span style="display: block;">{{$.i18n.Tr "repo.cloudbrain_creator"}}</span><span class="text_over" title="{{.User.Name}}">{{.User.Name}}</span> | |||||
| </div> | |||||
| <div class="six wide column text right"> | |||||
| <div class="ui compact buttons" style="margin-right:10px;"> | <div class="ui compact buttons" style="margin-right:10px;"> | ||||
| {{if and (ne .Status "WAITING") (ne .JobType "DEBUG")}} | {{if and (ne .Status "WAITING") (ne .JobType "DEBUG")}} | ||||
| <a class="ui basic button" href="{{$.Link}}/{{.JobID}}/rate" target="_blank"> | <a class="ui basic button" href="{{$.Link}}/{{.JobID}}/rate" target="_blank"> | ||||
| @@ -220,3 +220,12 @@ footer .column{margin-bottom:0!important; padding-bottom:0!important;} | |||||
| .ui.vertical.menu .dropdown.item .menu { | .ui.vertical.menu .dropdown.item .menu { | ||||
| left: 50%; | left: 50%; | ||||
| } | } | ||||
| .text_over{ | |||||
| overflow: hidden; | |||||
| text-overflow: ellipsis; | |||||
| -o-text-overflow: ellipsis; | |||||
| white-space: nowrap; | |||||
| display: inline-block; | |||||
| width: 100%; | |||||
| } | |||||