Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Updated the label's i18n:translate tags on elb_wizard.pt
Browse files Browse the repository at this point in the history
Closed unclosed div tag on select certificate dialog
  • Loading branch information
kyolee310 committed Apr 1, 2015
1 parent faf9135 commit 09c7b62
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
5 changes: 3 additions & 2 deletions eucaconsole/templates/dialogs/select_certificate_dialog.pt
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,14 @@
<form method="post" data-abide="abide" id="select-certificate-form">
${structure:certificate_form['csrf_token']}
<div>
<input type="radio" id="certificate-type-radio-existing" name="certificate_type_radio" value="existing" ng-model="certificateRadioButton" \>
<input type="radio" id="certificate-type-radio-existing" name="certificate_type_radio" value="existing" ng-model="certificateRadioButton"/>
<span>Choose an existing SSL certificate</span>
</div>
<div ng-show="certificateRadioButton === 'existing'">
${panel('form_field', field=certificate_form['certificates'], ng_attrs={'model': 'certificateARN'}, leftcol_width=3, rightcol_width=9)}
</div>
<div>
<input type="radio" id="certificate-type-radio-new" name="certificate_type_radio" value="new" ng-model="certificateRadioButton" \>
<input type="radio" id="certificate-type-radio-new" name="certificate_type_radio" value="new" ng-model="certificateRadioButton"/>
<span>Upload a new SSL certificate</span>
</div>
<div ng-show="certificateRadioButton === 'new'">
Expand Down
22 changes: 15 additions & 7 deletions eucaconsole/templates/elbs/elb_wizard.pt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<head metal:fill-slot="head_css">
<link rel="stylesheet" type="text/css" href="${request.static_path('eucaconsole:static/css/pages/elb_wizard.css')}" />
<link rel="stylesheet" type-"text/css" href="${request.static_path('eucaconsole:static/js/thirdparty/magic-search/magic_search.css')}"/>
<link rel="stylesheet" type="text/css" href="${request.static_path('eucaconsole:static/js/thirdparty/magic-search/magic_search.css')}"/>
<link rel="stylesheet" type="text/css" href="${request.static_path('eucaconsole:static/css/widgets/instance_selector.css')}" />
</head>

Expand Down Expand Up @@ -109,8 +109,10 @@
vpc_subnets_attrs {'data-placeholder': vpc_subnets_placeholder_text};">
<div ng-cloak="true" ng-show="vpcNetwork === 'None'">
<div>
<label i18n:translate="">
Add availability zones&nbsp;
<label>
<span i18n:translate="">
Add availability zones
</span>&nbsp;
<span class="helptext-icon" data-tooltip="" title="${create_form.add_availability_zones_help_text}">?</span>
</label>
</div>
Expand All @@ -124,8 +126,11 @@
</div>
<div ng-cloak="true" ng-show="vpcNetwork !== 'None'">
<div>
<label i18n:translate="">
Add VPC subnets&nbsp;
<label>
<span i18n:translate="">
Add VPC subnets
</span>
&nbsp;
<span class="helptext-icon" data-tooltip="" title="${create_form.add_vpc_subnets_help_text}">?</span>
</label>
</div>
Expand All @@ -134,8 +139,11 @@
</div>
<div ng-cloak="true">
<div>
<label i18n:translate="">
Add instances&nbsp;
<label>
<span i18n:translate="">
Add instances
</span>
&nbsp;
<span class="helptext-icon" data-tooltip="" title="${create_form.add_instances_help_text}">?</span>
</label>
</div>
Expand Down

0 comments on commit 09c7b62

Please sign in to comment.