Fix broken simple_ga javascript
This commit is contained in:
parent
0690e3241e
commit
45d2a54872
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ class GAEvent:
|
||||||
|
|
||||||
def gtag(self):
|
def gtag(self):
|
||||||
return mark_safe(
|
return mark_safe(
|
||||||
"gtag('event', '%(action)s', {'event_category' : '%(category)s', 'event_label' : '%(label)s' }, 'event_value' : '%(value)s' });" % {
|
"gtag('event', '%(action)s', {'event_category' : '%(category)s', 'event_label' : '%(label)s' , 'event_value' : '%(value)s' });" % {
|
||||||
'action': self.action,
|
'action': self.action,
|
||||||
'category': self.category,
|
'category': self.category,
|
||||||
'label': self.label,
|
'label': self.label,
|
||||||
|
|
Loading…
Reference in a new issue