Skip to content

Commit

Permalink
Small shits
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Tanase committed Jan 13, 2018
1 parent f7b33f6 commit cfa28fa
Show file tree
Hide file tree
Showing 13 changed files with 4 additions and 2 deletions.
Binary file modified Fabani/__init__.pyc
Binary file not shown.
Binary file modified Fabani/settings.pyc
Binary file not shown.
Binary file modified Fabani/urls.pyc
Binary file not shown.
Binary file modified Fabani/wsgi.pyc
Binary file not shown.
Binary file modified FabaniApp/__init__.pyc
Binary file not shown.
Binary file modified FabaniApp/admin.pyc
Binary file not shown.
Binary file modified FabaniApp/migrations/0001_initial.pyc
Binary file not shown.
Binary file modified FabaniApp/migrations/__init__.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion FabaniApp/models.py
Expand Up @@ -24,7 +24,7 @@ class Project(models.Model):
description = models.CharField(max_length=500)
# idEmployee = models.ManyToManyField(Employee, null=True)
# idEmployer = models.ForeignKey(Employer)
skills = models.ManyToManyField(Skill, null=True)
skills = models.ManyToManyField(Skill)
deadline = models.DateField()
payment = models.IntegerField()
active = models.BooleanField(default=True)
Expand Down
Binary file modified FabaniApp/models.pyc
Binary file not shown.
Binary file modified FabaniApp/urls.pyc
Binary file not shown.
4 changes: 3 additions & 1 deletion FabaniApp/views.py
Expand Up @@ -22,8 +22,10 @@ def register_view(request):
form = EmployerRegisterForm()
elif request.method == "POST":
form = EmployerRegisterForm(request.POST)
if form.is_valid():
#if form.is_valid():
#user.Create....


class employerProfile(DetailView):
template_name = 'employerProfile.html'
# model = Employer
Expand Down
Binary file modified FabaniApp/views.pyc
Binary file not shown.

0 comments on commit cfa28fa

Please sign in to comment.