Skip to content

Commit

Permalink
Made expected salary textfield
Browse files Browse the repository at this point in the history
  • Loading branch information
ziafazal committed May 20, 2019
1 parent 5f625eb commit 28860e1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions freshgrad_test/migrations/0003_auto_20190520_0752.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-05-20 07:52
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('freshgrad_test', '0002_auto_20190115_0802'),
]

operations = [
migrations.AlterField(
model_name='candidateinfo',
name='expected_salary',
field=models.TextField(verbose_name='Your salary expectations?'),
),
]
4 changes: 2 additions & 2 deletions freshgrad_test/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class CandidateInfo(models.Model):
why_arbisoft = models.TextField(
verbose_name=_("Why Arbisoft?")
)
expected_salary = models.CharField(
max_length=255, verbose_name=_("Your salary expectations?")
expected_salary = models.TextField(
verbose_name=_("Your salary expectations?")
)
career_plans = models.TextField(
verbose_name=_("Your career plans two years down the line?")
Expand Down

0 comments on commit 28860e1

Please sign in to comment.