Questions tagged [django-scheduler]

A calendar app for Django 1.7. Py3 Compatible.

23 questions
8
votes
2 answers

Using the Django scheduler app with your own models

Using the https://github.com/llazzaro/django-scheduler I'd like to use my own models in the calendar, they also have a start and end date. I think there are multiple ways to solve this problem: Hack the current schedule app to make it interact…
Sem
  • 4,477
  • 4
  • 33
  • 52
6
votes
1 answer

How to store third party apps migrations in django

I'm fairly new to python and django, and trying to build a simple calendar based on django-scheduler package. According to django-scheduler docs, a custom base class can be used to add additional fields, managers and such. So, I used an abstract…
Dmitry Oleinik
  • 700
  • 1
  • 7
  • 20
4
votes
1 answer

How to use the Django-Scheduler package?

I am looking to use the Django-Scheduler package in my Django project but am finding it difficult to understand how to actually implement the calendar so that it can be seen on the actual website. My website is meant to be a timetable scheduling…
user3541209
  • 145
  • 2
  • 9
2
votes
0 answers

How to add onClick actions to calendar events using Django-Scheduler?

I'm using Django-scheduler in my project. I really like the calendar and the ability to create recurring events. After installing it the the only code (besides stuff in settings.py) I've added is to myproject/urls.py: url(r'^schedule/',…
Liam Hanninen
  • 1,525
  • 2
  • 19
  • 37
2
votes
1 answer

Can't create recurring event in django-scheduler

I would like to specify an event which results in occurences between hours 16-21, everyday. How can I accomplish this? I have already tried a lot to do this, e.g. by specifing Event.start to 16:00 and Event.end to 21:00 with "daily" frequency rule,…
okrutny
  • 1,070
  • 10
  • 16
1
vote
0 answers

A better solution for the increasing number game?

I am remaking the question I made here based on the feedback given to me. If there is still something unclear in my question please let me know. Explanation for the game: Increasing number game where the users has to guess before the number is going…
Erik
  • 103
  • 9
1
vote
1 answer

Django Schedule/run tasks dynamically at particular time periodically from user's order in app (without celery)

I am creating a Django App where the user can schedule some tasks to happen at a particular time. for example. in google calendar we tell google what we will be doing tomorrow and then at right time it sends us a notification. similarly here I want…
r4mbhardwaj
  • 101
  • 1
  • 9
1
vote
0 answers

Iam trying to use a calendar in django to post events, in this case DJANGO-SCHEDULER(others appears to be outdated), but iam not getting sucess on it

I followed the steps in github to installed it but its not working, iam with doubts what to do in the models and views models.py class Programacao(models.Model): título = models.CharField(max_length=200) descrição = models.TextField() data_inicio =…
1
vote
1 answer

Django Template DIRS TemplateDoesNotExist: Why are some templates being skipped (Skipped)?

I'm trying out the sample project for django-scheduler. When I try to load 127.0.0.1 it throws TemplateDoesNotExist for base.html. Debug = True says: Django tried loading these templates, in this order: Using engine…
Liam Hanninen
  • 1,525
  • 2
  • 19
  • 37
1
vote
1 answer

How to extend the event/occurrence models in django-scheduler

I'd like to augment events/occurrences in django-scheduler with three things: Location Invitees RSVPs For Location, my initial thought was to subclass Event and add Location as a foreign key to a Location class, but my assumption is that each…
Spielo
  • 481
  • 1
  • 6
  • 17
1
vote
0 answers

How to create a Event in Django-Scheduler while creating a Object in Django?

I am a total newbie in Python and new on StackOverFlow. If I am missing something please let me know This is Django-scheduler App:- https://github.com/llazzaro/django-scheduler It giver various options to create events and occurrences Documentation…
Asthana.Me
  • 11
  • 4
1
vote
1 answer

django-scheduler can't find static files

I'm new to Django. I followed the instructions on the README and then I couldn't find any further instructions on how to use scheduler, so I copied the fullcalendar.html from the django-scheduler-sample project into my project. However, it can't…
Denise Mauldin
  • 5,397
  • 5
  • 32
  • 51
0
votes
0 answers

django appscheduler cron job is not running into cpanel

Currently, I'm using a Django library named appscheduler. First code: job = scheduler.add_job(schedule_job, 'cron', day_of_week='mon-fri', hour=14, minute=5) When I run this cron job in my localhost it's working very smoothly. But my Cpanel hosting…
Prosenjit
  • 241
  • 5
  • 15
0
votes
0 answers

update value certain time later using django appscheduler

I want to update a value every day at a certain time later. I wrote my models and views look like models.py class InvestmentRequest(models.Model): user = models.OneToOneField(User, related_name=“investment_request”, on_delete=models.CASCADE) …
Prosenjit
  • 241
  • 5
  • 15
0
votes
0 answers

Celery executes the task but not reflects them in the celery logs. Why?

For eg it runs perfect the first time but if we try to run the same thing again so if it ran 3 tasks at first it will show only 1 of them (first or last of the three). But will execute all of them. The command use to run celery here is celery -A…
1
2