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,8 @@
from django.core.management.base import NoArgsCommand
from eventplanner_gcal.google_sync import stopAllGCalSubscriptions
class Command(NoArgsCommand):
help = 'Stops all GCal subscriptions'
def handle_noargs(self, **options):
stopAllGCalSubscriptions()