Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Side by Side Diff: chrome/browser/resources/settings/certificate_manager_page/certificate_list.html

Issue 1819563002: MD Settings: Certificate manager, populate UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica te_entry.html">
3
4 <dom-module id="settings-certificate-list">
5 <template>
6 <template is="dom-repeat" items="[[certificates]]">
7 <settings-certificate-entry model="[[item]]"
8 certificate-type="[[certificateType]]">
9 </settings-certificate-entry>
10 </template>
11 <template is="dom-if" if="[[!certificates.length]]">
12 <!-- TODO(dpapad): Localize string -->
13 You have no certificates
14 </template>
15 </template>
16 <script src="certificate_list.js"></script>
17 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698