mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-21 19:51:03 +00:00
code style, ffs
This commit is contained in:
parent
4973446da8
commit
7c5e58023c
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class LowerThirdsOrgaView(PermissionRequired, FormView):
|
||||||
|
|
||||||
class EventInfoView(TemplateView):
|
class EventInfoView(TemplateView):
|
||||||
def get(self, request, *args, **kwargs):
|
def get(self, request, *args, **kwargs):
|
||||||
color = (self.request.event.primary_color or "#3aa57c")
|
color = self.request.event.primary_color or "#3aa57c"
|
||||||
return JsonResponse(
|
return JsonResponse(
|
||||||
{
|
{
|
||||||
"slug": self.request.event.slug,
|
"slug": self.request.event.slug,
|
||||||
|
|
Loading…
Reference in a new issue