from django.contrib import admin
from .models import Job, Application, Tag
admin.site.register([Job, Application, Tag])