Re: Seeking design guidance on a Team model where a user sends invitation to other users to join the team

2017-11-04 Thread shreekant bohra
Check out django-invitations app, which does exactly what you need - https://github.com/bee-keeper/django-invitations -- Shree Kant Bohra Co-founder Geekybuddha Technologies On Sun, Nov 5, 2017 at 8:57 AM, Jack wrote: > I have a model called *Team*, which has a

Seeking design guidance on a Team model where a user sends invitation to other users to join the team

2017-11-04 Thread Jack
I have a model called *Team*, which has a ForeignKey relationship with *User* (a team can have many users, but a user can only be part of one team). A user can create a team, and that user will automatically become a *Team Leader* (a group, not a model). The team leader can query the database

Re: tutorial site not working

2017-11-04 Thread Kyle Foley
Let me also show what I have placed in the terminal >>> Question.objects.get(pk=1) >>> q = Question.objects.get(pk=1) >>> q.was_published_recently() I also don't understand why I am outputting: And the website says the output should be: -- You received this message because you are

tutorial site not working

2017-11-04 Thread Kyle Foley
At this site https://docs.djangoproject.com/en/1.11/intro/tutorial02/ towards the end I input the following: >>> q.was_published_recently() and I got the following error: Traceback (most recent call last): File

Re: Exception Value: UNIQUE constraint failed: accounts_profile.user_id

2017-11-04 Thread Jani Tiainen
Hi. Using formset to handle profile is a bit incorrect solution. See http://musings.tinbrain.net/blog/2015/jun/10/updating-two-models-single-post/ for proper solution. 5.11.2017 0.01 "Luiz Guilherme Schiefler de Arruda" kirjoitti: > Hello folks, > > I'm studying Django and

Re: Django tutorial part 4: unresolved error?

2017-11-04 Thread Su-Shin Ang
Hi all, I just realised my error, so no worries. In my 'polls/urls.py', I am supposed the specify the value of the parameter, 'app_name', as 'polls'. Instead, I used 'app_names' rather than 'app_name' - typo. My bad! Ed On Saturday, November 4, 2017 at 10:52:33 PM UTC, Su-Shin Ang wrote:

Django tutorial part 4: unresolved error?

2017-11-04 Thread Su-Shin Ang
Hi all, I am getting started with Django, and working through the tutorial. I am currently stuck at part 4, as follows. https://docs.djangoproject.com/en/1.11/intro/tutorial04/ Specifically, I am getting the following error. NoReverseMatch at /polls/1/ 'polls' is not a registered namespace

Re: tutorial site refers to a module which does not exist

2017-11-04 Thread Kyle Foley
I called a consultant and he told me to write the following code INSTALLED_APPS = ( 'polls', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', and that

Re: tutorial site refers to a module which does not exist

2017-11-04 Thread Kyle Foley
ok, i redit it from scratch and when i wrote python manage.py startapp polls I was supposed to get polls/ __init__.py admin.py apps.py migrations/ __init__.py models.py tests.py views.py but instead the apps.py did not create On Saturday, November 4,

Re: tutorial site refers to a module which does not exist

2017-11-04 Thread knbk
Hi, What version of Django are you using? Starting in 1.9, the startapp command definitely creates an apps.py with a PollsConfig class, so you're likely using an older version of Django. You can either upgrade Django to 1.11 or use the tutorial for whichever version you have installed.

Re: tutorial site refers to a module which does not exist

2017-11-04 Thread Antonis Christofides
The tutorial does not ask you to put anything in that file because the command "python manage.py startapp polls" automatically puts in that file what is needed. If your apps.py file does not contain anything, the most likely explanation is that you accidentally deleted its contents while you were

Re: tutorial site refers to a module which does not exist

2017-11-04 Thread Kyle Foley
But if you look at the previous page where the apps.py is created https://docs.djangoproject.com/en/1.11/intro/tutorial01/ you'll see that in no case do they ask you to put anything in the apps.py It's blank, there's no pollsconfig in that file. On Saturday, November 4, 2017 at 3:01:15 PM

Re: tutorial site refers to a module which does not exist

2017-11-04 Thread Antonis Christofides
Hello, This is the second part of the tutorial. In the first part, at some point you were told to execute "python manage.py startapp polls". This should have created an appropriate apps.py file. Regards, Antonis Antonis Christofides http://djangodeployment.com On 2017-11-04 23:09, Kyle Foley

tutorial site refers to a module which does not exist

2017-11-04 Thread Kyle Foley
I'm trying to teach myself Django on this site: https://docs.djangoproject.com/en/1.11/intro/tutorial02/ If you look at this sentence: To include the app in our project, we need to add a reference to its configuration class in the INSTALLED_APPS

Exception Value: UNIQUE constraint failed: accounts_profile.user_id

2017-11-04 Thread Luiz Guilherme Schiefler de Arruda
Hello folks, I'm studying Django and everything was ok until this morning. After creating a form using inlineformset_factory, I can't create an user. I got this error when creating the user inside the form I've created: Exception Value: UNIQUE constraint failed: accounts_profile.user_id

Re: Django translations on mobile

2017-11-04 Thread Andréas Kühne
Django (like other frameworks) listen to specific headers to check for languages (namely : https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language). That is the same on all devices. The way we know what language to display the website in is through the browsers sending this

Re: Connection refused in Django-Project

2017-11-04 Thread Jani Tiainen
Hi. Quite hard to tell exactly what happens but looks like there is issued HTTP POST message to some url which returns connetion refused error. You should consult that project help channels for better help. 4.11.2017 19.01 "'bastil2001' via Django users" < django-users@googlegroups.com>

Connection refused in Django-Project

2017-11-04 Thread 'bastil2001' via Django users
Hello all, I am quite new to Django and I downloaded a project I want to start with. I get the server running but can't login as the admin user I created: System check identified 1 issue (0 silenced). November 04, 2017 - 10:52:53 Django version 1.7.1, using settings 'JMS.settings' Starting

consideration for HELP

2017-11-04 Thread srivastavanjali555
I have made a template through html/css in which i have included dropdown options. Now i want that when user select any option and click the button then accordingly related another template of that particular option will come through reference. Will you please help me on that. Your

How to save user permissions from custom user edit form

2017-11-04 Thread DJ-Tom
Hi, I have created the following user form for my custom user model: class UsersForm(ModelForm): class Meta: model = UserAccount fields = ('is_active', 'is_superuser', 'is_templog', 'is_crewreg', 'is_spaceman','first_name', 'last_name', 'company',

Django translations on mobile

2017-11-04 Thread 'steph' via Django users
Hello, I added translations to my django site - and it seems to work on desktop browsers. But on mobile phones not so: a user told me, he got the site in english despite his Samsung phone being setup in German. What can I do to detect the device language correctly? Thanks, Stephan -- You

What is the role of __deepcopy__ in Python class and Django widget

2017-11-04 Thread Paul
First, I know how copy and deepcopy from copy module work for a list. I'm interested the role of __deepcopy special method inside a class. I need to create custom widgets in Django and I try to understand the python code behind. class Widget(metaclass=MediaDefiningClass):