fix pdf
This commit is contained in:
parent
a95d643755
commit
35ffb8239f
|
@ -563,6 +563,27 @@ class EraseDataWipe(EraseBasic):
|
||||||
def get_public_name(self):
|
def get_public_name(self):
|
||||||
return "EraseDataWipe"
|
return "EraseDataWipe"
|
||||||
|
|
||||||
|
def __format__(self, format_spec: str) -> str:
|
||||||
|
v = ''
|
||||||
|
if 't' in format_spec:
|
||||||
|
v += '{} {}.'.format(self.type, self.severity)
|
||||||
|
if 's' in format_spec:
|
||||||
|
if not self.document:
|
||||||
|
v += 'On {}'.format(self.date_str)
|
||||||
|
return v
|
||||||
|
software = self.document.software or ''
|
||||||
|
url = self.document.url or ''
|
||||||
|
v += 'Software: {}, {}. '.format(software, url)
|
||||||
|
v += 'On {}'.format(self.date_str)
|
||||||
|
return v
|
||||||
|
|
||||||
|
@property
|
||||||
|
def date_str(self):
|
||||||
|
day = self.created
|
||||||
|
if self.document:
|
||||||
|
day = self.document.date or self.end_time or self.created
|
||||||
|
return '{:%c}'.format(day)
|
||||||
|
|
||||||
|
|
||||||
class Step(db.Model):
|
class Step(db.Model):
|
||||||
erasure_id = Column(
|
erasure_id = Column(
|
||||||
|
|
|
@ -378,11 +378,6 @@
|
||||||
</ol>
|
</ol>
|
||||||
</dd>
|
</dd>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if erasure.type == 'EraseDataWipe' %}
|
|
||||||
<br />
|
|
||||||
<dt>Software:</dt>
|
|
||||||
<dd>{{ erasure.document and erasure.document.software or ''}}</dd>
|
|
||||||
{% endif %}
|
|
||||||
{% if erasure.device.proofs %}
|
{% if erasure.device.proofs %}
|
||||||
<dt>DLT Proofs:</dt>
|
<dt>DLT Proofs:</dt>
|
||||||
<dd>
|
<dd>
|
||||||
|
|
Reference in New Issue