├── App ├── __init__.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── admin.py ├── tests.py ├── apps.py ├── __pycache__ │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc ├── urls.py ├── templates │ ├── index.html │ ├── login.html │ ├── register.html │ ├── restatic.py │ ├── resume.html │ └── create-resume.html ├── restatic.py ├── static │ ├── style.css │ └── script.js └── views.py ├── RESUMEBUILDER ├── __init__.py ├── __pycache__ │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── wsgi.cpython-37.pyc │ ├── wsgi.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-37.pyc │ └── settings.cpython-38.pyc ├── wsgi.py ├── urls.py └── settings.py ├── db.sqlite3 ├── manage.py ├── requirements.txt └── README.md /App/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RESUMEBUILDER/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /App/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /App/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /App/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AppConfig(AppConfig): 5 | name = 'App' 6 | -------------------------------------------------------------------------------- /App/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /App/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /App/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /App/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /App/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /App/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /App/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /App/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /App/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /App/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /App/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /App/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/App/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurhanMohammad/Django-Resume-Bulider/HEAD/RESUMEBUILDER/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /RESUMEBUILDER/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for RESUMEBUILDER project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'RESUMEBUILDER.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /App/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf import settings 2 | from django.conf.urls.static import static 3 | from django.urls import path, include 4 | from . import views 5 | 6 | app_name = "App" 7 | 8 | urlpatterns = [ 9 | path("", views.login, name="login"), 10 | path("login", views.login, name="login"), 11 | path("register", views.register, name="register"), 12 | path("index", views.index, name="index"), 13 | path("create-resume", views.create_resume, name="create-resume"), 14 | path("resume", views.resume, name="resume"), 15 | 16 | 17 | ] 18 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'RESUMEBUILDER.settings') 9 | try: 10 | from django.core.management import execute_from_command_line 11 | except ImportError as exc: 12 | raise ImportError( 13 | "Couldn't import Django. Are you sure it's installed and " 14 | "available on your PYTHONPATH environment variable? Did you " 15 | "forget to activate a virtual environment?" 16 | ) from exc 17 | execute_from_command_line(sys.argv) 18 | 19 | 20 | if __name__ == '__main__': 21 | main() 22 | -------------------------------------------------------------------------------- /App/templates/index.html: -------------------------------------------------------------------------------- 1 | {% load static %} 2 | 3 | 4 | 5 |
6 | 7 | Fauna Resume Builder 8 | 9 | 10 | 11 | 12 | 13 |{{resume_info.email}}
78 | {% endif %} 79 | {% if resume_info.phone %} 80 |{{resume_info.phone}}
81 | {% endif %} 82 | {% if resume_info.address %} 83 |{{resume_info.address}}
84 | {% endif %} 85 | 86 | {% if resume_info.about_you%} 87 |ABOUT ME
{{resume_info.about_you}} 91 |
92 |CAREER OBJECTIVES
98 |{{resume_info.career}}
101 |EDUCATION
108 |{{resume_info.education}}
111 |EMPLOYMENT EXPERIENCE
117 |{{resume_info.job_1__start}} to {{resume_info.job_1__end}}
126 |{{resume_info.job_1__details}} 129 |
130 |{{resume_info.job_2__start}} to {{resume_info.job_2__end}}
137 |{{resume_info.job_2__details}} 140 |
141 |{{resume_info.job_3__start}} to {{resume_info.job_3__end}}
148 |{{resume_info.job_3__details}} 151 |
152 |REFERENCES
158 |{% if resume_info.references %}{{resume_info.references}}{% else %}Available upon request{% endif %}
161 |' + left + '
') 117 | $('' + right + '
') 120 | $('' + state.email + '
') 131 | $('' + state.phone + '
') 132 | $('' + state.address + '
') 133 | $('') 134 | createGroup('ABOUT ME', state.about) 135 | createGroup("CAREER OBJECTIVES", state.career) 136 | createGroup('EDUCATION', state.education) 137 | createGroup('EMPLOYMENT EXPERIENCE', '') 138 | createGroup(state.job1.date.start + ' to ' + state.job1.date.end, state.job1.details) 139 | createGroup(state.job2.date.start + ' to ' + state.job2.date.end, state.job2.details) 140 | createGroup(state.job3.date.start + ' to ' + state.job3.date.end, state.job3.details) 141 | createGroup('REFERENCES', state.references) 142 | $('