--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/65204e73-37e5-4463-862f-cf453d835440%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1f030ca5-651e-45a9-b4b3-25dbe5dc31fa%40googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/Ve_RLvkK4Gs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CALn3ei2SJKHvjxCh2GV03Xh8%2BzOXJrV3FLZ9%3DEKjgStkfcqRdQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5D9058DA-F6B7-4866-95A0-CD7FA59AF5B1%40jobconvo.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CALn3ei32-q-cRm1m_jktsVnYoFg40fu4v5Ztd_BjL-f7b4n7FA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGz5-6j4VeVw3EEJ02YkaW%2BWYdq3qNjP420xQ6GB1OCVDEeCoA%40mail.gmail.com.
job = Job.objects.get(id=form.cleaned_data['job'])
Job matching query does not exist.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CALn3ei37ZTP8iQdZf6aFbpSd-KwWYu-M2H8Pfmn1eJxn8LL33g%40mail.gmail.com.
if form.is_valid():
#forms.py class SendCandForm(forms.Form): job = Company.objects.select_related('job').values_list('job__title', flat=True) jobs_choices = [('', 'Escolher')] + [(id, id) for id in job] job = forms.ChoiceField(choices=jobs_choices, label="Vaga", required=True, widget=forms.Select(attrs={'class': 'form-control'})) STATUS_CHOICES = ( ('0', 'Novo'), ('1', 'Não aprovado'), ('2', 'Pré Selecionado'), ('3', 'Contratado') ) status = forms.ChoiceField(required=True, widget=forms.RadioSelect(attrs={'class': ''}), choices=STATUS_CHOICES) def save(): job = self.cleaned_data['job'] status = self.cleaned_data['status'] ctj = CandidateToJob( job = job, status = status, candidate = candidate, ) ctj.save() return ctj
--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/Ve_RLvkK4Gs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d1188860-711c-47c0-b0ae-20b66ab94711%40googlegroups.com.
To unsubscribe from this group and all its topics, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/Ve_RLvkK4Gs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5fecdb96-e813-4735-a56f-ebd88aeecbf7%40googlegroups.com.