| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/assert.html"> | 2 <link rel="import" href="chrome://resources/html/assert.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica
te_entry.html"> | 4 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica
te_entry.html"> |
| 5 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica
tes_browser_proxy.html"> | 5 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica
tes_browser_proxy.html"> |
| 6 <link rel="import" href="chrome://md-settings/i18n_setup.html"> | 6 <link rel="import" href="chrome://md-settings/i18n_setup.html"> |
| 7 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 7 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 8 | 8 |
| 9 <dom-module id="settings-certificate-list"> | 9 <dom-module id="settings-certificate-list"> |
| 10 <template> | 10 <template> |
| 11 <style include="settings-shared"> | 11 <style include="settings-shared"> |
| 12 .settings-box { | 12 .settings-box { |
| 13 margin-bottom: 24px; | 13 margin-bottom: 24px; |
| 14 } | 14 } |
| 15 </style> | 15 </style> |
| 16 <div class="settings-box first"> | 16 <div class="settings-box first"> |
| 17 <span class="start">[[getDescription_(certificateType)]]</span> | 17 <span class="start"> |
| 18 [[getDescription_(certificateType, certificates)]]</span> |
| 18 <paper-button on-tap="onImportTap_" | 19 <paper-button on-tap="onImportTap_" |
| 19 hidden="[[!canImport_(certificateType)]]"> | 20 hidden="[[!canImport_(certificateType)]]"> |
| 20 $i18n{certificateManagerImport}</paper-button> | 21 $i18n{certificateManagerImport}</paper-button> |
| 21 </div> | 22 </div> |
| 22 <template is="dom-repeat" items="[[certificates]]"> | 23 <template is="dom-repeat" items="[[certificates]]"> |
| 23 <settings-certificate-entry model="[[item]]" | 24 <settings-certificate-entry model="[[item]]" |
| 24 certificate-type="[[certificateType]]"> | 25 certificate-type="[[certificateType]]"> |
| 25 </settings-certificate-entry> | 26 </settings-certificate-entry> |
| 26 </template> | 27 </template> |
| 27 <template is="dom-if" if="[[!certificates.length]]"> | |
| 28 <!-- TODO(dpapad): Localize string --> | |
| 29 You have no certificates | |
| 30 </template> | |
| 31 </template> | 28 </template> |
| 32 <script src="certificate_list.js"></script> | 29 <script src="certificate_list.js"></script> |
| 33 </dom-module> | 30 </dom-module> |
| OLD | NEW |