misc: add a class to file attachments displayed in history (#17348)

This commit is contained in:
Frédéric Péters 2017-07-05 09:10:09 +02:00
parent 60c96cf25e
commit 91e1614352
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ class AttachmentEvolutionPart: #pylint: disable=C1001
return odict
def view(self):
return htmltext('<p><a href="attachment?f=%s">%s</a>' % (
return htmltext('<p class="wf-attachment"><a href="attachment?f=%s">%s</a>' % (
os.path.basename(self.filename), self.orig_filename))
@classmethod