Google Calendar Coupling

- better location in gcal events (lat,long)
- more verbose instruction, howto use
- bugfixes in event tabular view
This commit is contained in:
Martin Bauer
2014-06-22 14:10:53 +02:00
parent 568376fbe7
commit 828901111e
6 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
from django.core.management.base import NoArgsCommand
from eventplanner_gcal.google_sync import checkGCalSubscription
class Command(NoArgsCommand):
help = 'Checks if the GCal notification channel is still active'
def handle_noargs(self, **options):
print ( "Checking Subscription")
checkGCalSubscription()