pawan
diff --git a/test2/carrer/__init__.py b/test2/carrer/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/test2/carrer/__pycache__/__init__.cpython-38.pyc b/test2/carrer/__pycache__/__init__.cpython-38.pyc
deleted file mode 100644
index 5a7a873..0000000
Binary files a/test2/carrer/__pycache__/__init__.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/__pycache__/admin.cpython-38.pyc b/test2/carrer/__pycache__/admin.cpython-38.pyc
deleted file mode 100644
index 48e553d..0000000
Binary files a/test2/carrer/__pycache__/admin.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/__pycache__/models.cpython-38.pyc b/test2/carrer/__pycache__/models.cpython-38.pyc
deleted file mode 100644
index 65e6ab7..0000000
Binary files a/test2/carrer/__pycache__/models.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/__pycache__/serializers.cpython-38.pyc b/test2/carrer/__pycache__/serializers.cpython-38.pyc
deleted file mode 100644
index 3c08f50..0000000
Binary files a/test2/carrer/__pycache__/serializers.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/__pycache__/urls.cpython-38.pyc b/test2/carrer/__pycache__/urls.cpython-38.pyc
deleted file mode 100644
index 7b6ac26..0000000
Binary files a/test2/carrer/__pycache__/urls.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/__pycache__/views.cpython-38.pyc b/test2/carrer/__pycache__/views.cpython-38.pyc
deleted file mode 100644
index 6bd6e17..0000000
Binary files a/test2/carrer/__pycache__/views.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/admin.py b/test2/carrer/admin.py
deleted file mode 100644
index aedb908..0000000
--- a/test2/carrer/admin.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from django.contrib import admin
-from django.db import models
-from carrer import models
-# Register your models here.
-admin.site.register(models.Jobs)
-admin.site.register(models.Application)
diff --git a/test2/carrer/apps.py b/test2/carrer/apps.py
deleted file mode 100644
index 0a0a22a..0000000
--- a/test2/carrer/apps.py
+++ /dev/null
@@ -1,5 +0,0 @@
-from django.apps import AppConfig
-
-
-class CarrerConfig(AppConfig):
- name = 'carrer'
diff --git a/test2/carrer/migrations/0001_initial.py b/test2/carrer/migrations/0001_initial.py
deleted file mode 100644
index 18a026c..0000000
--- a/test2/carrer/migrations/0001_initial.py
+++ /dev/null
@@ -1,40 +0,0 @@
-# Generated by Django 3.1.3 on 2021-03-21 10:55
-
-from django.db import migrations, models
-import django.db.models.deletion
-
-
-class Migration(migrations.Migration):
-
- initial = True
-
- dependencies = [
- ]
-
- operations = [
- migrations.CreateModel(
- name='Jobs',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('position', models.CharField(max_length=500)),
- ('location', models.CharField(max_length=500)),
- ('jobType', models.CharField(max_length=500)),
- ('openings', models.IntegerField()),
- ('experiences', models.CharField(max_length=500)),
- ('educationLevel', models.CharField(max_length=500, null=True)),
- ('description', models.CharField(max_length=6000)),
- ('requirements', models.TextField(max_length=6000)),
- ],
- ),
- migrations.CreateModel(
- name='Application',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('name', models.CharField(max_length=100)),
- ('mob', models.CharField(max_length=10)),
- ('mailID', models.CharField(max_length=50)),
- ('resume', models.FileField(upload_to='resume/')),
- ('job', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='carrer.jobs')),
- ],
- ),
- ]
diff --git a/test2/carrer/migrations/__init__.py b/test2/carrer/migrations/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/test2/carrer/migrations/__pycache__/0001_initial.cpython-38.pyc b/test2/carrer/migrations/__pycache__/0001_initial.cpython-38.pyc
deleted file mode 100644
index cd9d230..0000000
Binary files a/test2/carrer/migrations/__pycache__/0001_initial.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/migrations/__pycache__/__init__.cpython-38.pyc b/test2/carrer/migrations/__pycache__/__init__.cpython-38.pyc
deleted file mode 100644
index 95a5aa3..0000000
Binary files a/test2/carrer/migrations/__pycache__/__init__.cpython-38.pyc and /dev/null differ
diff --git a/test2/carrer/models.py b/test2/carrer/models.py
deleted file mode 100644
index 8839532..0000000
--- a/test2/carrer/models.py
+++ /dev/null
@@ -1,24 +0,0 @@
-from django.db import models
-from django.db.models.base import ModelState
-
-# Create your models here.
-class Jobs(models.Model):
- position = models.CharField(max_length=500)
- location = models.CharField(max_length=500)
- jobType = models.CharField(max_length=500)
- openings = models.IntegerField()
- experiences = models.CharField(max_length=500)
- educationLevel = models.CharField(max_length=500, null=True)
- description = models.CharField(max_length=6000)
- requirements = models.TextField(max_length=6000)
-
- def __str__(self) :
- return self.position
-
-
-class Application(models.Model):
- name = models.CharField(max_length=100)
- job = models.ForeignKey(Jobs, on_delete=models.CASCADE)
- mob = models.CharField(max_length=10)
- mailID = models.CharField(max_length=50)
- resume = models.FileField(upload_to="resume/")
diff --git a/test2/carrer/serializers.py b/test2/carrer/serializers.py
deleted file mode 100644
index 1273081..0000000
--- a/test2/carrer/serializers.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from rest_framework.serializers import ModelSerializer
-from carrer import models
-
-class JobSerializer(ModelSerializer):
- class Meta:
- model=models.Jobs
- fields="__all__"
\ No newline at end of file
diff --git a/test2/carrer/templates/carrer/community.html b/test2/carrer/templates/carrer/community.html
deleted file mode 100644
index ce420ac..0000000
--- a/test2/carrer/templates/carrer/community.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% load static %}
-
-Here's what our Employees Quote about Devtron -
-A glimps of healty and fun lifestyle offered by devtron to its employees.
-
-
-
-
-
-
-
-
-
-
- Openings: 1
-Experience: 7-11 yrs
-Openings: 2
-Experience: 2+ yrs
-Openings: 1
-Experience: 5-8 yrs
-Openings: 2
-Experience: 5+ yrs
-Welcome to Devtron. Together, lets bring the revolution in the way world Dev-Operate.
-
- We place great values and respect for people who work at Devtron. We help people to innovate their craft and provide a - Work/life balance. Here's are some of the things we do for our employees. -
-Office Locations
-Our headquarters in Gurgaon, India is just one of our many office locations. Our presence in cities is growing all - over the globe. We place great values and respect for people who work at Devtron. -
-Medical Benefits
-We take care of our hard working employees at Devtron. We bear the expenses of your family's yearly full-body - check-up and medications. We place great values and respect for people who work at Devtron. -
-Work/Life Balance
-We offer flexible working hours, generous vacation days each year, and family oriented work policies. We place great - values and respect for people who work at Devtron. -
-Equal Career Opportunities
-Devtron Labs is, and always will be, committed to diversity and inclusion. We seek Devtronians from all backgrounds - to join our teams and encourage everyone to bring their authentic, original and best selves to work. -