Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Announcements for 2017 Fall #7

Open
pembeci opened this issue Dec 12, 2017 · 4 comments
Open

Announcements for 2017 Fall #7

pembeci opened this issue Dec 12, 2017 · 4 comments

Comments

@pembeci
Copy link
Owner

pembeci commented Dec 12, 2017

Just watch (subscribe to) this issue to receive e-mail notifications about course related announcements.

@pembeci
Copy link
Owner Author

pembeci commented Dec 15, 2017

Project demos related information is posted on our Wiki. There is also a link to a Doodle page so you can select a demo date and time.

@pembeci
Copy link
Owner Author

pembeci commented Dec 23, 2017

If you are going to use a Profile model to extend User model like we did in class and you already have some User objects in the db, first you may want to create respective Profile objects for existing users:

$ python manage.py shell
> from django.contrib.auth.models import User
> from mysite.core.models import Profile
> users = User.objects.filter(profile=None)
> for user in users:
>     Profile.objects.create(user=user)

Check this comment on the tutorial.

@pembeci
Copy link
Owner Author

pembeci commented Dec 26, 2017

If you are planning to leave your grading to make-up exam, you still need to show me some progress (i.e. adapting a template, defining your model in code) on your demo date so that I can enter a grade for your final exam that will qualify you for makeup. Another thing to consider, you'll be able to get at most DC after make-up even if your project would deserve higher normally. I believe and can convince you that make-ups are unfair inherently so that's my policy in all of my courses.

@pembeci
Copy link
Owner Author

pembeci commented Jan 8, 2018

For your make-up exam you can come to my office and show your project on 11.01 (Thursday) between 10:30 and 15:00. No need to take an appointment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant