diff --git a/lemur/static/app/angular/certificates/view/view.tpl.html b/lemur/static/app/angular/certificates/view/view.tpl.html
index d57445fe..9683e813 100644
--- a/lemur/static/app/angular/certificates/view/view.tpl.html
+++ b/lemur/static/app/angular/certificates/view/view.tpl.html
@@ -24,8 +24,8 @@
- - {{ ::certificate.name }}
- - {{ ::certificate.owner }}
+ - {{ certificate.name }}
+ - {{ certificate.owner }}
|
@@ -35,10 +35,10 @@
|
- {{ ::certificate.authority.name || certificate.issuer }}
+ {{ certificate.authority.name || certificate.issuer }}
|
- {{ ::certificate.cn }}
+ {{ certificate.cn }}
|
@@ -62,19 +62,19 @@
Creator
- {{ ::certificate.creator.email }}
+ {{ certificate.creator.email }}
Not Before
-
- {{ ::momentService.createMoment(certificate.notBefore) }}
+
+ {{ momentService.createMoment(certificate.notBefore) }}
Not After
-
- {{ ::momentService.createMoment(certificate.notAfter) }}
+
+ {{ momentService.createMoment(certificate.notAfter) }}
@@ -86,15 +86,15 @@
Bits
- {{ ::certificate.bits }}
+ {{ certificate.bits }}
Signing Algorithm
- {{ ::certificate.signingAlgorithm }}
+ {{ certificate.signingAlgorithm }}
Serial
- {{ ::certificate.serial }}
+ {{ certificate.serial }}
Description
- {{ ::certificate.description }}
+ {{ certificate.description }}
@@ -116,8 +116,8 @@
Notifications
-
- {{ ::notification.label }}
- {{ ::notification.description}}
+ {{ notification.label }}
+ {{ notification.description}}
@@ -125,24 +125,24 @@
Destinations
-
- {{ ::destination.label }}
- {{ ::destination.description }}
+ {{ destination.label }}
+ {{ destination.description }}
Domains
Replaces
@@ -155,7 +155,7 @@
tooltip="Copy chain to clipboard" tooltip-trigger="mouseenter" clipboard
text="certificate.chain">
- {{ ::certificate.chain }}
+ {{ certificate.chain }}
@@ -164,7 +164,7 @@
tooltip="Copy certificate to clipboard" tooltip-trigger="mouseenter" clipboard
text="certificate.body">
- {{ ::certificate.body }}
+ {{ certificate.body }}
@@ -173,7 +173,7 @@
tooltip="Copy key to clipboard" tooltip-trigger="mouseenter" clipboard
text="certificate.privateKey">
- {{ ::certificate.privateKey }}
+ {{ certificate.privateKey }}
|