1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

improve transaction template management

This commit is contained in:
Pierre-antoine Comby
2019-08-11 23:24:54 +02:00
parent c10f0a21a4
commit 4dead7edf2
3 changed files with 10 additions and 3 deletions

View File

@ -5,6 +5,7 @@
from django.db import models
from django.utils import timezone
from django.utils.translation import gettext_lazy as _
from django.urls import reverse
from .notes import Note,NoteClub
@ -37,6 +38,9 @@ class TransactionTemplate(models.Model):
verbose_name = _("transaction template")
verbose_name_plural = _("transaction templates")
def get_absolute_url(self):
return reverse('note:template_update',args=(self.pk,))
class Transaction(models.Model):
source = models.ForeignKey(