js: "prog.js", line 2: missing ; before statement
js: class Resume(models.Model):
js: ............^
js: "prog.js", line 3: syntax error
js: user = models.ForeignKey(User)
js: ..........^
js: "prog.js", line 4: syntax error
js: title = models.CharField(max_length=255)
js: ...........^
js: "prog.js", line 5: syntax error
js: salary = models.PositiveIntegerField()
js: ............^
js: "prog.js", line 6: syntax error
js: city = models.CharField(max_length=255)
js: ..........^
js: "prog.js", line 7: syntax error
js: skills = models.TextField(blank=True)
js: ............^
js: "prog.js", line 8: syntax error
js: experience = models.PositiveIntegerField()
js: ................^
js: "prog.js", line 9: syntax error
js: ENGLISH_CHOICES = (
js: .....................^
js: "prog.js", line 10: missing ; before statement
js: ('NS','No english skills'),
js: .....................................^
js: "prog.js", line 11: missing ; before statement
js: ('RO','Can read tech docs'),
js: ......................................^
js: "prog.js", line 12: missing ; before statement
js: ('SG','Can be a part of meeting'),
js: ............................................^
js: "prog.js", line 13: missing ; before statement
js: ('SP','Fluent English'),
js: ..................................^
js: "prog.js", line 22: syntax error
js: )
js: ............^
js: "prog.js", line 23: syntax error
js: variants = models.CharField(max_length=255, choices = VARIANTS_CHOICES)
js: ..............^
js: "prog.js", line 24: syntax error
js: about_job = models.TextField(blank=True)
js: ...............^
js: "prog.js", line 25: syntax error
js: achivements = models.TextField(blank=True)
js: .................^
js: "prog.js", line 28: missing ) after argument list
js: url(r'^accounts/profile/resume/edit/$', 'Registry.views.resume_update'),
js: .....................................^
js: "prog.js", line 31: missing ; before statement
js: def resume_update(request, pk=None):
js: .................^
js: "prog.js", line 32: syntax error
js: obj = get_object_or_404(Resume, pk=pk)
js: .........^
js: "prog.js", line 33: syntax error
js: form = ResumeForm(request.POST, instance=obj)
js: ..........^
js: "prog.js", line 34: missing ; before statement
js: if request.method == 'POST':
js: ...............................^
js: "prog.js", line 35: missing ; before statement
js: if form.is_valid():
js: ..........................^
js: "prog.js", line 36: syntax error
js: form.save()
js: .................^
js: "prog.js", line 38: syntax error
js: else:
js: ........^
js: "prog.js", line 39: syntax error
js: user = request.user
js: ..............^
js: "prog.js", line 40: syntax error
js: obj = Resume.objects.get(user=request.user)
js: .............^
js: "prog.js", line 41: syntax error
js: form = ResumeForm(instance=obj)
js: ..............^
js: "prog.js", line 42: syntax error
js: args = {}
js: ..........^
js: "prog.js", line 43: syntax error
js: args.update(csrf(request))
js: .........^
js: "prog.js", line 45: invalid return
js: return render_to_response('resume_update.html', args)
js: ..........^
js: "prog.js", line 48: missing ; before statement
js: <form action='/accounts/profile/resume/edit/' method="post">
js: ................^
js: "prog.js", line 49: syntax error
js: {% csrf_token %}
js: ......^
js: "prog.js", line 50: syntax error
js: {{form.as_ul}}
js: .................^
js: "prog.js", line 51: missing ; before statement
js: <input type="submit" value="Update" />
js: ...............^
js: "prog.js", line 53: unterminated regular expression literal
js: </form>
js: ..........^
js: "prog.js", line 1: Compilation produced 35 syntax errors.