This commit is contained in:
2022-08-22 17:12:49 +02:00
parent f580bcffc5
commit 2af772a722
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
from ram.utils import git_suffix from ram.utils import git_suffix
__version__ = "0.0.13" __version__ = "0.0.14"
__version__ += git_suffix(__file__) __version__ += git_suffix(__file__)

View File

@@ -146,7 +146,7 @@ class RollingStockDocument(models.Model):
def download(self): def download(self):
return mark_safe( return mark_safe(
"<a href=\"{0}\" target=\"_blank\">Link</a>".format(self.file.url) '<a href="{0}" target="_blank">Link</a>'.format(self.file.url)
) )