commit e6a775383be27d9ebbdfd2ddb82005425cb0cbd7 Author: CPABONG Date: Sat Jun 21 18:37:05 2025 +0900 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f22f632 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd + +# Django +db.sqlite3 +*.sqlite3 +*.log + +# Environment +.env +*.env +venv/ +env/ +ENV/ +*.bak + +# Static files (collected) +staticfiles/ + +# Media files (if any) +media/ + +# System files +.DS_Store +Thumbs.db + +# VSCode +.vscode/ + +# Executables +run + +# Office files +*.xlsx +*.xls diff --git a/A_core/__init__.py b/A_core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/A_core/asgi.py b/A_core/asgi.py new file mode 100644 index 0000000..6aaec3a --- /dev/null +++ b/A_core/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for A_core project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.2/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'A_core.settings') + +application = get_asgi_application() diff --git a/A_core/settings.py b/A_core/settings.py new file mode 100644 index 0000000..a6821db --- /dev/null +++ b/A_core/settings.py @@ -0,0 +1,145 @@ +""" +Django settings for A_core project. + +Generated by 'django-admin startproject' using Django 4.2.16. + +For more information on this file, see +https://docs.djangoproject.com/en/4.2/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/4.2/ref/settings/ +""" + +from pathlib import Path +import os + + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-emcnlfk0d!2*^4j2%ul!h^)7q&7toieekgr6s5$@y4roxau59z' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = ['www.sillaamp.com', 'sillaamp.com', '127.0.0.1'] + +CSRF_TRUSTED_ORIGINS = [ + 'https://www.sillaamp.com', + 'https://sillaamp.com', + 'http://www.sillaamp.com', + 'http://sillaamp.com', +] + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'B_main', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', + 'whitenoise.middleware.WhiteNoiseMiddleware', +] + +ROOT_URLCONF = 'A_core.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'A_core.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/4.2/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/4.2/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/4.2/howto/static-files/ + +STATIC_URL = 'static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' + + + +MEDIA_URL = '/media/' +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +STATIC_URL = '/static/' +STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') +# STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' + + +SESSION_COOKIE_AGE = 600 # 10분 +SESSION_EXPIRE_AT_BROWSER_CLOSE = True \ No newline at end of file diff --git a/A_core/urls.py b/A_core/urls.py new file mode 100644 index 0000000..f65232d --- /dev/null +++ b/A_core/urls.py @@ -0,0 +1,24 @@ +""" +URL configuration for A_core project. + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/4.2/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include + + +urlpatterns = [ + path('admin/', admin.site.urls), + path('', include('B_main.urls')), +] diff --git a/A_core/wsgi.py b/A_core/wsgi.py new file mode 100644 index 0000000..0e689b4 --- /dev/null +++ b/A_core/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for A_core project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'A_core.settings') + +application = get_wsgi_application() diff --git a/B_main/__init__.py b/B_main/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/B_main/admin.py b/B_main/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/B_main/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/B_main/apps.py b/B_main/apps.py new file mode 100644 index 0000000..18edb53 --- /dev/null +++ b/B_main/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class BMainConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'B_main' diff --git a/B_main/migrations/__init__.py b/B_main/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/B_main/models.py b/B_main/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/B_main/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/B_main/peopleinfo.py b/B_main/peopleinfo.py new file mode 100644 index 0000000..61b8f48 --- /dev/null +++ b/B_main/peopleinfo.py @@ -0,0 +1,162 @@ +PEOPLE = [ +{'이름' : '강경옥','소속' : '소니아 리키엘','생년월일' : '1960.03.27','직책' : '점장','연락처' : '010-3858-5270','주소' : '부산시 기장군 기장읍 기장해안로 147 (롯데동부산 1층)','사진' : 'B_main/images/강경옥.png','TITLE':'경조국','SEQUENCE':'',}, +{'이름' : '강규호','소속' : '건우건축사사무소','생년월일' : '1972.08.05','직책' : '대표','연락처' : '010-3156-9448','주소' : '부산시 진구 동평로 350(양정현대프라자, 2층, 213호)','사진' : 'B_main/images/강규호.png',}, +{'이름' : '강승구','소속' : '㈜ 대원석재','생년월일' : '1971.08.09','직책' : '대표','연락처' : '010-3846-0812','주소' : '부산광역시 연제구 월드컵대로 32번길 9 ','사진' : 'B_main/images/강승구.png',}, +{'이름' : '강지훈','소속' : '제이에이치툴링','생년월일' : '1989.08.22','직책' : '대표','연락처' : '010-7752-2731','주소' : '부산광역시 사상구 감전천로 252','사진' : 'B_main/images/강지훈.png',}, +{'이름' : '고현숙','소속' : '의료법인 좋은사람들 ','생년월일' : '1961.08.22','직책' : '이사','연락처' : '010-3591-9400','주소' : '부산 연제구 과정로 128','사진' : 'B_main/images/고현숙.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '공한수','소속' : '부산시 서구','생년월일' : '1959.09.23','직책' : '구청장','연락처' : '010-2020-2982','주소' : '부산광역시 서구 구덕로 120','사진' : 'B_main/images/공한수.png',}, +{'이름' : '곽기융','소속' : '㈜동천산업','생년월일' : '1970.09.26','직책' : '대표','연락처' : '010-3882-8394','주소' : '부산광역시 동래구 온천천로471번가길 18-3 ㈜동천산업 2층','사진' : 'B_main/images/곽기융.png',}, +{'이름' : '권중천','소속' : '희창물산㈜','생년월일' : '1945.04.26','직책' : '회장','연락처' : '010-5109-2755','주소' : '부산광역시 서구 충무대로146, 희창물산㈜','사진' : 'B_main/images/권중천.png','TITLE':'고문회장','SEQUENCE':'6',}, +{'이름' : '김가현','소속' : '스카이블루에셋㈜','생년월일' : '1973.06.16','직책' : '팀장','연락처' : '010-4544-7379','주소' : '부산시 동구 조방로 14, 동일타워 10층 위너스 지점','사진' : 'B_main/images/김가현.png',}, +{'이름' : '김기재','소속' : '부산시 영도구','생년월일' : '1957.05.29','직책' : '구청장','연락처' : '010-3867-3368','주소' : '','사진' : 'B_main/images/김기재.png',}, +{'이름' : '김기호','소속' : '경동개발','생년월일' : '1966.01.05','직책' : '대표','연락처' : '010-3131-9092','주소' : '경남 양산시 동면 금오 12길 83','사진' : 'B_main/images/김기호.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '김대성','소속' : '㈜지에스어패럴 ','생년월일' : '1974.11.05','직책' : '대표','연락처' : '010-4877-4277','주소' : '부산 남구 동제당로 12 3층,4층','사진' : 'B_main/images/김대성.png','TITLE':'기획사무국','SEQUENCE':'',}, +{'이름' : '김동화','소속' : 'KDB생명','생년월일' : '1966.04.18','직책' : '지점장','연락처' : '010-6677-8079','주소' : '부산시 진구 중앙대로 640 ABL건물 생명빌딩 10층','사진' : 'B_main/images/김동화.png','TITLE':'홍보국','SEQUENCE':'',}, +{'이름' : '김미경','소속' : '㈜동남석면환경연구소','생년월일' : '1976.06.23','직책' : '대표','연락처' : '010-4579-4781','주소' : '부산광역시 연제구 고분로 55번길24','사진' : 'B_main/images/김미경.png',}, +{'이름' : '김미애','소속' : '예재원','생년월일' : '1976.02.12','직책' : '대표','연락처' : '010-3568-8055','주소' : '부산광역시 동래구 여고북로 215-1 1층','사진' : 'B_main/images/김미애.png',}, +{'이름' : '김민주','소속' : '웰킨 두피/탈모센터','생년월일' : '1969.11.20','직책' : '원장','연락처' : '010-4221-0515','주소' : '부산시 금정구 중앙대로 1629번길26 금샘빌딩 4층','사진' : 'B_main/images/김민주.png',}, +{'이름' : '김보성','소속' : '가온기업','생년월일' : '1987.07.18','직책' : '대표','연락처' : '010-9328-0588','주소' : '부산광역시 사상구 낙동대로1452번길 35','사진' : 'B_main/images/김보성.png','TITLE':'기획사무국','SEQUENCE':'',}, +{'이름' : '김봉수','소속' : '선민회계법인','생년월일' : '1979.01.03','직책' : '이사','연락처' : '010-3343-3319','주소' : '부산시 동구 조방로14 동일타워 413호 선민회계법인','사진' : 'B_main/images/김봉수.png','TITLE':'감사','SEQUENCE':'',}, +{'이름' : '김상준','소속' : '부산지방검찰청 서부지청','생년월일' : '1979.05.11','직책' : '형사2부장검사','연락처' : '010-7373-8126','주소' : '부산 강서구 명지국제7로 67(명지동) 부산지방검찰청 서부지청','사진' : 'B_main/images/김상준.png',}, +{'이름' : '김선이','소속' : '롯데백화점 세인트앤드류스','생년월일' : '1961.04.22','직책' : '대표','연락처' : '010-5391-6021','주소' : '부산진구 가야대로 772 4층','사진' : 'B_main/images/김선이.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '김성주','소속' : '㈜ 현진','생년월일' : '1955.10.05','직책' : '대표','연락처' : '010-3863-7207','주소' : '부산 강서구 생곡산단2로11번길 33','사진' : 'B_main/images/김성주.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '김성훈','소속' : 'THE SYSTEM','생년월일' : '1972.05.16','직책' : '대표','연락처' : '010-4840-1197','주소' : '부산광역시 강서구 미음국제5로마길 5, 3층','사진' : 'B_main/images/김성훈.png',}, +{'이름' : '김영하','소속' : '싱싱F.S','생년월일' : '1987.06.14','직책' : '대표','연락처' : '010-2006-5106','주소' : '부산시 사상구 새벽로 131 산업용재 유통상가','사진' : 'B_main/images/김영하.png',}, +{'이름' : '김영훈','소속' : '해운대비치골프앤리조트','생년월일' : '1975.03.09','직책' : '전무','연락처' : '010-8081-3345','주소' : '부산광역시 기장군 대변로 74','사진' : 'B_main/images/김영훈.png',}, +{'이름' : '김외숙','소속' : '㈜주승','생년월일' : '1968.12.20','직책' : '대표','연락처' : '010-2110-1173','주소' : '부산시 사상구 삼락천로 138','사진' : 'B_main/images/김외숙.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '김용권','소속' : '㈜태성산업기계','생년월일' : '1971.08.20','직책' : '대표','연락처' : '010-2592-4402','주소' : '','사진' : 'B_main/images/김용권.png',}, +{'이름' : '김윤규','소속' : '㈜ 동남엔지니어링','생년월일' : '1968.11.25','직책' : '대표','연락처' : '010-5448-0650','주소' : '부산광역시 강서구 미음산단로8번길 80','사진' : 'B_main/images/김윤규.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '김윤아','소속' : '㈜한국분석센터','생년월일' : '1964.04.18','직책' : '대표','연락처' : '010-3854-7940','주소' : '부산광역시 사상구 학감대로 133번길 13 ㈜한국분석센터','사진' : 'B_main/images/김윤아.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '김은희','소속' : '씨앤웍스 ','생년월일' : '1976.06.08','직책' : '대표','연락처' : '010-2568-6258','주소' : '부산시 해운대구 센텀서로 30 KNN타워 1506호','사진' : 'B_main/images/김은희.png',}, +{'이름' : '김일곤','소속' : '다사랑 문고','생년월일' : '1966.02.01','직책' : '대표','연락처' : '010-2549-4459','주소' : '부산광역시 금정구 부산대학로 49 오션프라자 1층','사진' : 'B_main/images/김일곤.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '김재준','소속' : '㈜ 성강개발 JOB','생년월일' : '1977.01.14','직책' : '대표','연락처' : '010-8873-8282','주소' : '부산시 진구 부전동 262-15 3층','사진' : 'B_main/images/김재준.png',}, +{'이름' : '김정호','소속' : '㈜아신비에스','생년월일' : '1975.10.02','직책' : '대표','연락처' : '010-8466-5106','주소' : '부산 서구 원양로 35 국제수산물도매시장 도매장동 3층 104호','사진' : 'B_main/images/김정호.png',}, +{'이름' : '김준수','소속' : '법무법인 로인','생년월일' : '1989.12.25','직책' : '대표변호사','연락처' : '010-6898-0505','주소' : '부산 연제구 법원로 28 801호','사진' : 'B_main/images/김준수.png',}, +{'이름' : '김중선','소속' : '연일한우참숯구이','생년월일' : '1961.11.19','직책' : '사장','연락처' : '010-2783-6974','주소' : '부산시 연제구 고분로32번길 42 1층','사진' : 'B_main/images/김중선.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '김진홍','소속' : '부산시 동구','생년월일' : '1957.11.17','직책' : '구청장','연락처' : '010-5609-5609','주소' : '','사진' : 'B_main/images/김진홍.png',}, +{'이름' : '김태영','소속' : '가가산업개발㈜','생년월일' : '1972.11.25','직책' : '대표','연락처' : '010-6267-4598','주소' : '부산시 북구 금곡대로 616번길 25 3층','사진' : 'B_main/images/김태영.png',}, +{'이름' : '김태형','소속' : '해우법무사사무소','생년월일' : '1962.02.27','직책' : '대표','연락처' : '010-6338-9339','주소' : '부산 연제구 법원로 34 909호(거제동, 정림빌딩)','사진' : 'B_main/images/김태형.png','TITLE':'총무국장','SEQUENCE':'',}, +{'이름' : '김한집','소속' : '사상기업발전협의회','생년월일' : '1959.10.22','직책' : '회장','연락처' : '010-4646-0560','주소' : '부산시 사상구 사상로 440번길 28(모라동)','사진' : 'B_main/images/김한집.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '김현우','소속' : '부산교통공사','생년월일' : '1969.12.02','직책' : '기획예산실장','연락처' : '010-8007-9813','주소' : '부산광역시 부산진구 중앙대로 644번길 20','사진' : 'B_main/images/김현우.png',}, +{'이름' : '김현준','소속' : 'BNK 부산은행','생년월일' : '1970.07.13','직책' : '상무','연락처' : '010-3590-9457','주소' : '부산광역시 남구 문현금융로 30, 부산은행 본점 18층','사진' : 'B_main/images/김현준.png',}, +{'이름' : '김희경','소속' : '오케이물류 ','생년월일' : '1970.04.15','직책' : '부장','연락처' : '010-5858-3136','주소' : '부산 중구 대청로 155번길 6 오케이물류㈜','사진' : 'B_main/images/김희경(수정).png',}, +{'이름' : '노현주','소속' : '이앤씨상봉㈜','생년월일' : '1960.11.27','직책' : '이사','연락처' : '010-3857-2756','주소' : '부산시 동래구 충렬대로 107번길','사진' : 'B_main/images/노현주.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '노희숙','소속' : '더베스트금융㈜부경','생년월일' : '1966.12.01','직책' : '대표','연락처' : '010-8398-5508','주소' : '부산시 동래구 온천천로 179-1 휘담채 3층','사진' : 'B_main/images/노희숙.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '마점래','소속' : '㈜ 엠오티','생년월일' : '1962.03.17','직책' : '회장','연락처' : '010-3591-1575','주소' : '경상남도 양산시 상북면 석계산단2길 46','사진' : 'B_main/images/마점래(수정).png','TITLE':'선임상임부회장','SEQUENCE':'7',}, +{'이름' : '문성배','소속' : '(주)SMC ','생년월일' : '1965.05.06','직책' : '대표','연락처' : '010-9304-0388','주소' : '부산광역시 동구 수정중로 11번길 29, 2층','사진' : 'B_main/images/문성배.png','TITLE':'감사','SEQUENCE':'',}, +{'이름' : '문정순','소속' : '지클랩','생년월일' : '1968.05.29','직책' : '대표','연락처' : '010-9800-4848','주소' : '경기도 화성시 동탄대로 636-1 911호','사진' : 'B_main/images/문정순.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '민수연','소속' : 'BS부산오페라단','생년월일' : '1974.04.05','직책' : '단장','연락처' : '010-8448-8358','주소' : '부산광역시 금강로 380번길 21 2층','사진' : 'B_main/images/민수연.png','TITLE':'친교문화국','SEQUENCE':'',}, +{'이름' : '민홍기','소속' : '민플란트치과의원','생년월일' : '1988.06.08','직책' : '원장','연락처' : '010-8509-4470','주소' : '부산 해운대구 센텀남대로 50 A1102호, A1103호','사진' : 'B_main/images/민홍기.png',}, +{'이름' : '박강범','소속' : '부영회계법인','생년월일' : '1981.10.23','직책' : '대표','연락처' : '010-3949-8866','주소' : '부산광역시 해운대구 센텀중앙로97, 센텀스카이비즈 3707호','사진' : 'B_main/images/박강범.png',}, +{'이름' : '박경민','소속' : '로한종합건설㈜','생년월일' : '1976.07.31','직책' : '대표','연락처' : '010-9961-9699','주소' : '부산광역시 기장군 장안읍 고무로 129','사진' : 'B_main/images/박경민.png',}, +{'이름' : '박국제','소속' : '㈜국제경영기술원','생년월일' : '1951.06.15','직책' : '원장','연락처' : '010-3842-5063','주소' : '부산광역시 금정구 두실로24번길 12','사진' : 'B_main/images/박국제.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '박대진','소속' : '한몽경영인협의회','생년월일' : '1973.05.10','직책' : '회장','연락처' : '010-2610-0531','주소' : '강남구 테헤란로 82길 15 574호','사진' : 'B_main/images/박대진.png','TITLE':'홍보국','SEQUENCE':'',}, +{'이름' : '박명숙','소속' : '거산통상','생년월일' : '1968.04.08','직책' : '대표','연락처' : '010-6289-1777','주소' : '부산시 사상구 괘감로 37, 11동 107호 거산통상','사진' : 'B_main/images/박명숙.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '박명옥','소속' : '㈜참한디자인','생년월일' : '1966.03.25','직책' : '이사','연락처' : '010-8551-5871','주소' : '부산시 연제구 거제시장로 15 참한빌딩 3층','사진' : 'B_main/images/박명옥.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '박명진','소속' : '해운대비치골프앤리조트','생년월일' : '1962','직책' : '회장','연락처' : '010-6267-8188','주소' : '부산시 기장군 기장읍 대변로 74 해운대비치골프앤리조트','사진' : 'B_main/images/박명진.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '박민희','소속' : '㈜청운','생년월일' : '1989.05.18','직책' : '대표','연락처' : '010-3168-7872','주소' : '경남 양산시 동면 외송로30,701동1601호(사송더샵데시앙2차7단지)','사진' : 'B_main/images/박민희.png','TITLE':'친교문화국','SEQUENCE':'',}, +{'이름' : '박부술','소속' : '(주)삼림물산','생년월일' : '1968.05.13','직책' : '대표','연락처' : '010-9880-7422','주소' : '부산시 강서구 녹간산단 407로 8','사진' : 'B_main/images/박부술.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '박성호','소속' : '부산진해경제자유구역청','생년월일' : '1966.12.13','직책' : '청장','연락처' : '010-5641-5815','주소' : '부산광역시 강서구 녹산산단232로 38-26로','사진' : 'B_main/images/박성호.png',}, +{'이름' : '박성훈','소속' : '국민의힘 부산 북구(을)','생년월일' : '1971.01.18','직책' : '국회의원','연락처' : '010-6760-3435','주소' : '','사진' : 'B_main/images/박성훈.png',}, +{'이름' : '박순자','소속' : '','생년월일' : '1958.01.02','직책' : '','연락처' : '010-2383-1296','주소' : '부산시 동래구 명륜로 49 센트럴 B/D 6층','사진' : 'B_main/images/박순자.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '박영우','소속' : '퍼시픽링스코리아 영남지사','생년월일' : '1969.01.29','직책' : '지사장','연락처' : '010-3844-8255','주소' : '부산시 해운대구 센텀서로 30 209호','사진' : 'B_main/images/박영우.png','TITLE':'친교문화국','SEQUENCE':'',}, +{'이름' : '박영해','소속' : '건양사이버대학교','생년월일' : '1961.05.19','직책' : '교수','연락처' : '010-3542-3578','주소' : '대전시 서구 관저동로 158','사진' : 'B_main/images/박영해.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '박재성','소속' : '㈜이앤아이솔루션','생년월일' : '1989.03.02','직책' : '대표','연락처' : '010-9963-5420','주소' : '부산시 수영구 수영로 488번길 26 재안빌딩 4층','사진' : 'B_main/images/박재성.png',}, +{'이름' : '박정숙','소속' : '(주)노벨홀딩스','생년월일' : '1979.01.10','직책' : '대표','연락처' : '010-8076-2001','주소' : '부산시 부산진구 가야대로 473 4층','사진' : 'B_main/images/박정숙.png',}, +{'이름' : '박정은','소속' : '㈜승진','생년월일' : '1984.04.02','직책' : '대표','연락처' : '010-6484-4402','주소' : '부산광역시 강서구 미음동 1554-6','사진' : 'B_main/images/박정은.png',}, +{'이름' : '박종인','소속' : '법무법인 로베리 ','생년월일' : '1976.03.15','직책' : '부산사무소 대표(파트너변호사)','연락처' : '010-5564-1791','주소' : '부산 연제구 법원남로 15번길 26 위너스빌딩 3층','사진' : 'B_main/images/박종인.png',}, +{'이름' : '박주원','소속' : '㈜ 온나라 부동산 중개법인','생년월일' : '1965.10.30','직책' : '부사장','연락처' : '010-5624-5321','주소' : '부산시 연제구 중앙대로 144 우전빌딩 2층','사진' : 'B_main/images/박주원(수정).png','TITLE':'기획사무국','SEQUENCE':'',}, +{'이름' : '박지환','소속' : '㈜푸르다','생년월일' : '1960.06.05','직책' : '대표','연락처' : '010-3844-7818','주소' : '부산시 기장군 일광면 체육공원1로 3','사진' : 'B_main/images/박지환.png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '배범한','소속' : '㈜대산컨설팅','생년월일' : '1980.10.02','직책' : '대표','연락처' : '010-2223-3940','주소' : '부산광역시 해운대구 반여로 186-7, 1층','사진' : 'B_main/images/배범한.png',}, +{'이름' : '배성효','소속' : '법무법인 무한','생년월일' : '1964.11.25','직책' : '대표변호사','연락처' : '010-6201-2117','주소' : '부산 연제구 법원북로 86, 9층(거제동, 만해빌딩)','사진' : 'B_main/images/배성효.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '변연옥','소속' : '홍콩반점 양산역점 ','생년월일' : '1970.10.03','직책' : '대표','연락처' : '010-7765-7890','주소' : '양산역 3길 16 101호','사진' : 'B_main/images/변연옥.png',}, +{'이름' : '빈윤진','소속' : '진무역','생년월일' : '1964.10.05','직책' : '대표','연락처' : '010-3567-2854','주소' : '부산시 남구 문현동 고동골로 10-1 동양빌딩 3층','사진' : 'B_main/images/빈윤진.png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '서강섭','소속' : '㈜호방종합건설','생년월일' : '1970.09.28','직책' : '대표','연락처' : '010-3856-7303','주소' : '부산시 사상구 덕상로 22, 403호(덕포동, 명성빌딩)','사진' : 'B_main/images/서강섭.png','TITLE':'경조국','SEQUENCE':'',}, +{'이름' : '서지윤','소속' : '㈜리만 부산 센텀지사','생년월일' : '1972.09.20','직책' : '지사장','연락처' : '010-2823-4375','주소' : '부산시 해운대구 센텀동로9 트럼프월드센텀 209호','사진' : 'B_main/images/서지윤.png',}, +{'이름' : '성동화','소속' : '부산신용보증재단','생년월일' : '1961.10.17','직책' : '이사장','연락처' : '010-8787-5902','주소' : '부산광역시 부산진구 진연로 15(양정동)','사진' : 'B_main/images/성동화.png',}, +{'이름' : '성충식','소속' : '㈜에이스여행사','생년월일' : '1962.01.03','직책' : '대표','연락처' : '010-5007-9178','주소' : '부산시 중구 해관로73 일광빌딩 3층','사진' : 'B_main/images/성충식.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '손동현','소속' : '아트스윙','생년월일' : '1985.12.09','직책' : '대표','연락처' : '010-3883-7113','주소' : '부산 북구 만덕3로 16번길 1 부산이노비즈센터 206호 아트스윙','사진' : 'B_main/images/손동현.png','TITLE':'홍보국','SEQUENCE':'',}, +{'이름' : '송연익','소속' : '(주)에스엠산업','생년월일' : '1968.06.26','직책' : '대표','연락처' : '010-3849-2100','주소' : '서울시 강남구 대치4동 910-6번지 202동 202호','사진' : 'B_main/images/송연익.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '심수현','소속' : '카페레빗','생년월일' : '1969.08.19','직책' : '대표','연락처' : '010-8234-8776','주소' : '해운대구 달맞이 길 62번 길 5-57 카페레빗','사진' : 'B_main/images/심수현.png',}, +{'이름' : '안복지','소속' : '플로라네트(꽃사세요)','생년월일' : '1972.09.01','직책' : '대표','연락처' : '010-5499-3339','주소' : '부산시 남구 수영로 26 (대림문현시티프라자) 107호','사진' : 'B_main/images/안복지.png','TITLE':'경조국','SEQUENCE':'',}, +{'이름' : '안상배','소속' : '법무법인 예주','생년월일' : '1984.03.28','직책' : '대표변호사','연락처' : '010-6683-3981','주소' : '부산광역시 연제구 법원남로15번길 10, 6층(거제동, 미르코아빌딩)','사진' : 'B_main/images/안상배.png','TITLE':'기획사무국','SEQUENCE':'',}, +{'이름' : '안영봉','소속' : '남부경찰서','생년월일' : '1970.05.14','직책' : '서장','연락처' : '010-3563-8339','주소' : '부산광역시 연제구 중앙대로 999','사진' : 'B_main/images/안영봉.png',}, +{'이름' : '양재진','소속' : '㈜ 한림기업','생년월일' : '1970.06.21','직책' : '대표 ','연락처' : '010-7181-3241','주소' : '부산광역시 기장군 장안읍 반룡산단1로55','사진' : 'B_main/images/양재진.png',}, +{'이름' : '어익수','소속' : '㈜ 다오테크','생년월일' : '1964.07.05','직책' : '대표','연락처' : '010-4552-2495','주소' : '부산광역시 영도구 남향서로 119(남향동1가 9번지)','사진' : 'B_main/images/어익수.png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '엄신아','소속' : '신라횟집','생년월일' : '1971.10.12','직책' : '대표','연락처' : '010-6656-5837','주소' : '부산시 수영구 민학수변로 7번가 16','사진' : 'B_main/images/엄신아.png',}, +{'이름' : '여은주','소속' : '지구산업','생년월일' : '1965.04.27','직책' : '대표','연락처' : '010-6818-2045','주소' : '부산광역시 부산진구 신천대로 71번길 23(범천동)','사진' : 'B_main/images/여은주.png','TITLE':'재무국','SEQUENCE':'',}, +{'이름' : '예영숙','소속' : '삼성생명보험㈜','생년월일' : '1960.11.18','직책' : '명예전무','연락처' : '010-3532-3519','주소' : '대구광역시 중구 달구벌대로 2095,삼성생명빌딩 9층 예영숙명예전무실','사진' : 'B_main/images/예영숙.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '오용택','소속' : '한택','생년월일' : '1965.07.29','직책' : '대표','연락처' : '010-8512-3238','주소' : '경남 김해시 김해대로 2596번길125 (지내동)','사진' : 'B_main/images/오용택.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '오원재','소속' : '㈜에스씨원건설','생년월일' : '1970.11.26','직책' : '대표','연락처' : '010-2585-2424','주소' : '부산광역시 북구 금곡대로616번길 135','사진' : 'B_main/images/오원재.png','TITLE':'재무국','SEQUENCE':'',}, +{'이름' : '유석찬','소속' : '서호종합건설㈜','생년월일' : '1968.02.28','직책' : '대표','연락처' : '010-9320-7007','주소' : '부산시 강서구 명지국제2로28번길 26, 602호(명지동, 퍼스트삼융)','사진' : 'B_main/images/유석찬.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이기영','소속' : 'BNK부산은행 부전동금융센터','생년월일' : '1971.11.22','직책' : '금융센터장','연락처' : '010-3882-1516','주소' : '부산광역시 부산진구 새싹로 1(부전동)','사진' : 'B_main/images/이기영.png',}, +{'이름' : '이대명','소속' : '법무사 이대명 사무소','생년월일' : '1963.08.25','직책' : '법무사','연락처' : '010-2834-8248','주소' : '부산 연제구 법원남로 16번길 21','사진' : 'B_main/images/이대명.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이두홍','소속' : '㈜ 동남창호산업','생년월일' : '1974.05.18','직책' : '대표','연락처' : '010-2602-8263','주소' : '경남 양산시 상북면 수서로 70','사진' : 'B_main/images/이두홍.png','TITLE':'친교문화국','SEQUENCE':'',}, +{'이름' : '이범민','소속' : '㈜ 와이즈','생년월일' : '1985.02.09','직책' : '대표','연락처' : '010-9334-1364','주소' : '경남 양산시 물금읍 서들8길 45, 4층 와이즈','사진' : 'B_main/images/이범민.png',}, +{'이름' : '이상경','소속' : '법무법인 태종','생년월일' : '1964.12.22','직책' : '대표변호사','연락처' : '010-5351-1866','주소' : '부산 연제구 법원로 12,701호','사진' : 'B_main/images/이상경.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이상규','소속' : '㈜보문','생년월일' : '1956.09.29','직책' : '대표','연락처' : '010-3887-1288','주소' : '부산광역시 부산진구 동천로108번길 14','사진' : 'B_main/images/이상규.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '이상민','소속' : '(주)월드이노텍','생년월일' : '1987.05.03','직책' : '전무','연락처' : '010-3230-9354','주소' : '경상남도 양산시 덕계동 웅상농공단지길 42 월드이노텍','사진' : 'B_main/images/이상민.png',}, +{'이름' : '이수연','소속' : '이수연 힐링예술원','생년월일' : '1969.04.15','직책' : '원장','연락처' : '010-5539-9999','주소' : '부산시 연제구 세병로 6, 3층','사진' : 'B_main/images/이수연.png',}, +{'이름' : '이순옥','소속' : '삼성생명보험㈜','생년월일' : '1963.12.17','직책' : '명예상무','연락처' : '010-3871-8088','주소' : '부산시 동구 중앙대로 222 삼성생명빌딩 황도지점','사진' : 'B_main/images/이순옥.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이승규','소속' : '성심종합건설㈜','생년월일' : '1959.11.20','직책' : '대표','연락처' : '010-7248-3301','주소' : '부산광역시 사하구 감천로134, (감천동, 중모빌딩) 6층','사진' : 'B_main/images/이승규.png','TITLE':'회장','SEQUENCE':'4',}, +{'이름' : '이영희','소속' : 'IBK투자증권','생년월일' : '1961.07.22','직책' : '자문역','연락처' : '010-4329-9432','주소' : '부산광역시 해운대구 센텀남대로 50 (우동) 임페리얼타워 2층','사진' : 'B_main/images/이영희.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이인숙','소속' : '큐앤㈜','생년월일' : '1969.05.10','직책' : '대표','연락처' : '010-9092-0510','주소' : '부산광역시 남구 고동골로 78번길 12(문현동 창암빌딩 6층)','사진' : 'B_main/images/이인숙.png',}, +{'이름' : '이정문','소속' : '글로벌산업','생년월일' : '1967.03.15','직책' : '대표','연락처' : '010-3860-3650','주소' : '부산시 사상구 새벽시장로 19-19','사진' : 'B_main/images/이정문.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이주영','소속' : '인(IN)코칭연구소','생년월일' : '1976.05.01','직책' : '대표','연락처' : '010-4872-8837','주소' : '부산 부산진구 서전로37번길 25-9, 802호','사진' : 'B_main/images/이주영.png',}, +{'이름' : '이학민','소속' : '㈜신화이엔지','생년월일' : '1983.08.03','직책' : '대표','연락처' : '010-9306-9994','주소' : '부산광역시 강서구 미읍산단로 37번길 9(구량동) 1층 주식회사 신화이엔지','사진' : 'B_main/images/이학민.png',}, +{'이름' : '이향숙','소속' : '메이저','생년월일' : '1963.03.23','직책' : '대표','연락처' : '010-9312-3023','주소' : '부산시 해운대구 우동 203번지 오션타워 4층','사진' : 'B_main/images/이향숙.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이현수','소속' : '삼우종합개발','생년월일' : '1961.06.24','직책' : '대표','연락처' : '010-3874-1222','주소' : '부산광역시 사하구 다대로 531','사진' : 'B_main/images/이현수.png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '이현우','소속' : '㈜은하수산 ','생년월일' : '1964.08.24','직책' : '대표','연락처' : '010-3593-7888','주소' : '부산광역시 강서구 녹산산단 381로 36`','사진' : 'B_main/images/이현우.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '이현정','소속' : '㈜ 스윗솔루션','생년월일' : '1981.11.25','직책' : '대표','연락처' : '010-5109-5789','주소' : '부산 강서구 범방3로78번길 25','사진' : 'B_main/images/이현정.png',}, +{'이름' : '이화경','소속' : '해동산업㈜','생년월일' : '1965.04.03','직책' : '이사','연락처' : '010-5436-7257','주소' : '부산시 사상구 감전동 낙동대로 1052','사진' : 'B_main/images/이화경.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '임문수','소속' : '㈜휴먼스컴퍼니','생년월일' : '1963.03.22','직책' : '대표','연락처' : '010-4130-4750','주소' : '서울 서대문구 충정리시온 217호','사진' : 'B_main/images/임문수.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '임영민','소속' : '티엔에스무역㈜','생년월일' : '1988.10.29','직책' : '전무','연락처' : '010-9699-8113','주소' : '부산광역시 중구 태종로 14-1, 반도빌딩 4층, 티엔에스무역㈜','사진' : 'B_main/images/임영민.png',}, +{'이름' : '임윤택','소속' : '센텀종합병원','생년월일' : '1960.01.06','직책' : '행정부장','연락처' : '010-6561-2222','주소' : '부산광역시 수영구 수영로 679번길 8 센텀종합병원 신관 14층','사진' : 'B_main/images/임윤택.png',}, +{'이름' : '임창섭','소속' : '㈜ 동신','생년월일' : '1966.08.15','직책' : '회장','연락처' : '010-4128-3343','주소' : '부산광역시 해운대구 우동1로 20번길 27-10 ㈜동신','사진' : 'B_main/images/임창섭(수정).png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '장은화','소속' : '정덕기업경영연구원','생년월일' : '1973.04.17','직책' : '대표','연락처' : '010-8892-9635','주소' : '부산시 동구 중앙대로 409 디알라이프시티 305호','사진' : 'B_main/images/장은화.png',}, +{'이름' : '장지훈','소속' : '㈜다우플랫폼','생년월일' : '1983.04.07','직책' : '대표','연락처' : '010-9459-0579','주소' : '부산시 연제구 과정로 276번가길 32, 2층','사진' : 'B_main/images/장지훈.png',}, +{'이름' : '장현정','소속' : '㈜ 고앤파트너스','생년월일' : '1978.05.05','직책' : '이사','연락처' : '010-3329-1226','주소' : '창원시 의창구 용동로 83번안길 7, 401호(사림동, 미래드림빌딩)','사진' : 'B_main/images/장현정.png',}, +{'이름' : '전미영','소속' : 'IBK기업은행 부산지점','생년월일' : '1971.05.23','직책' : '부지점장','연락처' : '010-5567-7514','주소' : '부산광역시 중구 중앙대로88 (중앙동4가) 기업은행 부산지점','사진' : 'B_main/images/전미영.png',}, +{'이름' : '전병웅','소속' : '㈜이진주택','생년월일' : '1974.09.25','직책' : '대표','연락처' : '010-4553-6301','주소' : '부산광역시 수영구 연수로 405, 4층','사진' : 'B_main/images/전병웅(수정).png',}, +{'이름' : '전성훈','소속' : '대원플러스그룹','생년월일' : '1971.05.25','직책' : '이사','연락처' : '010-2857-9157','주소' : '부산시 해운대구 마린시티2로33 제니스스퀘어 A동 402호','사진' : 'B_main/images/전성훈.png',}, +{'이름' : '전종태','소속' : '㈜디엔씨텍','생년월일' : '1956.08.27','직책' : '대표','연락처' : '010-6583-3004','주소' : '경기도 화성시 장안면 석포로 94-21','사진' : 'B_main/images/전종태.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '전희충','소속' : '㈜대웅이티','생년월일' : '1962.08.01','직책' : '대 표','연락처' : '010-3001-3435','주소' : '부산광역시 강서구 화전산단3로 90 ㈜대웅이티','사진' : 'B_main/images/전희충.png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '정석민','소속' : '㈜연우 비즈니스 컨설팅','생년월일' : '1974.10.16','직책' : '대표','연락처' : '010-4552-0609','주소' : '부산 해운대구 해운대로 790(좌동, 대림아크로텔) 1601호','사진' : 'B_main/images/정석민.png',}, +{'이름' : '정용표','소속' : '㈜케이에이엠','생년월일' : '1959.01.06','직책' : '대표','연락처' : '010-3868-4103','주소' : '부산시 강서구 녹산산단382로 50번길30','사진' : 'B_main/images/정용표.png','TITLE':'수석부회장','SEQUENCE':'5',}, +{'이름' : '정윤목','소속' : '㈜금양프린텍 ','생년월일' : '1955.03.03','직책' : '대표','연락처' : '010-3863-4546','주소' : '부산광역시 중구 흑교로 35번길 9(부평동3가)','사진' : 'B_main/images/정윤목.png','TITLE':'경조국','SEQUENCE':'',}, +{'이름' : '정의석','소속' : '국제식품','생년월일' : '1982.07.08','직책' : '본부장','연락처' : '010-6309-7896','주소' : '부산시 진구 거제대로 70 국제식품빌딩','사진' : 'B_main/images/정의석.png',}, +{'이름' : '정종복','소속' : '부산광역시 기장군청','생년월일' : '1954.11.20','직책' : '군수','연락처' : '010-3574-8512','주소' : '부산 기장군 기장읍 기장대로 560 기장군청','사진' : 'B_main/images/정종복.png',}, +{'이름' : '정형재','소속' : '㈜하우스메이커','생년월일' : '1974.10.23','직책' : '대표','연락처' : '010-6330-9911','주소' : '부산광역시 남구 동제당로 2(문현동 1층)','사진' : 'B_main/images/정형재.png',}, +{'이름' : '제권진','소속' : '좋은엘리베이터㈜','생년월일' : '1972.04.12','직책' : '대표','연락처' : '010-8002-8255','주소' : '부산시 강서구 신로산단1로 101, 상가동 304호(신호동, 부산신호사랑으로부영5차)','사진' : 'B_main/images/제권진.png',}, +{'이름' : '제오수','소속' : '㈜에스비안전','생년월일' : '1957.06.12','직책' : '대표','연락처' : '010-3850-5728','주소' : '부산광역시 강서구 녹산산다382로14번길 55(녹산협업화사업장)','사진' : 'B_main/images/제오수(수정).png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '제일호','소속' : '경동건설㈜','생년월일' : '1975.10.25','직책' : '부장','연락처' : '010-4446-7515','주소' : '부산광역시 연제구 황령산로 599(연산동 1985-12번지)','사진' : 'B_main/images/제일호.png',}, +{'이름' : '조승민','소속' : '중소벤처기업진흥공단 부산지역본부','생년월일' : '1970.04.28','직책' : '본부장','연락처' : '010-3033-9055','주소' : '부산시 부산진구 중앙대로 639번지 엠디엠타워 23층','사진' : 'B_main/images/조승민.png',}, +{'이름' : '조엘리사','소속' : '㈜꼬레아티에스','생년월일' : '1973.01.01','직책' : '대표','연락처' : '010-6421-3240','주소' : '부산 사상구 광장로 56번길 56(3층, 괘법동)','사진' : 'B_main/images/조엘리사.png','TITLE':'홍보국','SEQUENCE':'',}, +{'이름' : '주진우','소속' : '국민의힘 부산 해운대구(갑)','생년월일' : '1975.05.25','직책' : '국회의원','연락처' : '010-9004-9330','주소' : '','사진' : 'B_main/images/주진우.png',}, +{'이름' : '주효정','소속' : '우리돼지국밥','생년월일' : '1971.07.29','직책' : '대표','연락처' : '010-4480-7724','주소' : '부산 동구 초량로 27-1','사진' : 'B_main/images/주효정.png',}, +{'이름' : '진서윤','소속' : '㈜파나','생년월일' : '1966.04.20','직책' : '상무','연락처' : '010-3855-7758','주소' : '양산시 상북면 양산대로 1266-3 ㈜ 파나','사진' : 'B_main/images/진서윤.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '진종규','소속' : '㈜ 화승이엔씨','생년월일' : '1968.10.25','직책' : '대표','연락처' : '010-9331-4119','주소' : '부산광역시 부산진구 중앙대로 979번길 6 뉴라이웰 203호','사진' : 'B_main/images/진종규.jpeg',}, +{'이름' : '최대경','소속' : '수원대학교','생년월일' : '1961.11.12','직책' : '특임교수','연락처' : '010-3582-5164','주소' : '경기도 화성시 봉담융 와우안길 17','사진' : 'B_main/images/최대경.png',}, +{'이름' : '최승자','소속' : '플로스 플라워','생년월일' : '1959.12.21','직책' : '대표','연락처' : '010-9315-4755','주소' : '부산시 중구 중앙대로 41번길 3 ','사진' : 'B_main/images/최승자.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '최유심','소속' : '㈜정수인더스트리','생년월일' : '1964.05.21','직책' : '대표','연락처' : '010-4554-6226','주소' : '부산시 부산진구 가야대로 749-1 1307호','사진' : 'B_main/images/최유심.png','TITLE':'재무국','SEQUENCE':'',}, +{'이름' : '최정현','소속' : '엔피씨글로벌','생년월일' : '1979.07.12','직책' : '대표','연락처' : '010-9663-5081','주소' : '부산 강서구 공항로 1409번길 42','사진' : 'B_main/images/최정현(수정).png',}, +{'이름' : '최준익','소속' : '늘바다품애','생년월일' : '1987.06.28','직책' : '대표','연락처' : '010-9798-4172','주소' : '창원시 마산합포구 어시장 4길 20','사진' : 'B_main/images/최준익.png',}, +{'이름' : '최진봉','소속' : '부산시 중구','생년월일' : '1955.01.18','직책' : '구청장','연락처' : '010-4628-4002','주소' : '부산광역시 중구 중구로 120, 부산중구청 2층(구청장 비서실)','사진' : 'B_main/images/최진봉.png',}, +{'이름' : '하익수','소속' : '남우건설주식회사','생년월일' : '1965.10.08','직책' : '대표','연락처' : '010-3585-0940','주소' : '부산금정구 금장로 225번길 장전벽산블루밍디자인 아파트 204동 1005호','사진' : 'B_main/images/하익수.png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '한윤철','소속' : '㈜ 고려엔지니어링종합건설','생년월일' : '1972.07.04','직책' : '대표','연락처' : '010-4556-0985','주소' : '부산 남구 못골로 12번길 67 4층(대연동)','사진' : 'B_main/images/한윤철.png',}, +{'이름' : '허성우','소속' : '월강','생년월일' : '1979.11.13','직책' : '대표','연락처' : '010-3420-1049','주소' : '부산광역시 부산진구 서면로7 월강(1~4층)','사진' : 'B_main/images/허성우.png',}, +{'이름' : '현광열','소속' : 'LG에어컨가전SW(주)','생년월일' : '1969.07.07','직책' : '대표','연락처' : '010-9926-5569','주소' : '부산시 금정구 금정로55, 5층','사진' : 'B_main/images/현광열.png',}, +{'이름' : '황미영','소속' : '㈜센트럴시티','생년월일' : '1965.09.16','직책' : '대표','연락처' : '010-6780-8082','주소' : '부산시 해운대구 센텀중앙로 97, 에이동 3011호(재송동, 센텀스카이비즈)','사진' : 'B_main/images/황미영.png','TITLE':'상임부회장','SEQUENCE':'',}, +{'이름' : '황순민','소속' : '부산지방국세청','생년월일' : '1969.12.12','직책' : '송무과장','연락처' : '010-9002-0026','주소' : '부산광역시 연제구 토곡로20','사진' : 'B_main/images/황순민.png',}, +{'이름' : '황윤미','소속' : '㈜ 마케팅위너','생년월일' : '1976.10.09','직책' : '대표','연락처' : '010-9695-2918','주소' : '부산광역시 사상구 모라로 22, 부산벤처타워 1607호','사진' : 'B_main/images/황윤미.png',}, +{'이름' : '황진순','소속' : '영진에셋 알파지점','생년월일' : '1968.04.01','직책' : '지점장','연락처' : '010-6561-5593','주소' : '부산시 부산진구 서면로22, 6층 602호(태양빌딩)','사진' : 'B_main/images/황진순.png','TITLE':'부회장','SEQUENCE':'',}, +{'이름' : '황태욱','소속' : '㈜유림이엔티','생년월일' : '1982.10.27','직책' : '실장','연락처' : '010-3300-0706','주소' : '부산시 강서구 낙동북로73번길 15','사진' : 'B_main/images/황태욱.png',}, +{'이름' : '황하섭','소속' : '세정강재㈜','생년월일' : '1973.12.17','직책' : '대표','연락처' : '010-5582-0078-','주소' : '부산 사상구 학장로 135번길20 (학장동)','사진' : 'B_main/images/황하섭.png',}, +{'이름' : '황현숙','소속' : '정관장 가야점','생년월일' : '1961.04.27','직책' : '대표','연락처' : '010-3851-0187','주소' : '부산시 부산진구 가야대로 679번길 155 유림상가 정관장','사진' : 'B_main/images/황현숙.png','TITLE':'고문','SEQUENCE':'',}, +{'이름' : '황현종','소속' : '더와이즈 법률사무소','생년월일' : '1983.10.24','직책' : '대표변호사','연락처' : '010-5466-9173','주소' : '부산광역시 연제구 법원로 28,1305호(거제동, 부산법조타운빌딩)','사진' : 'B_main/images/황현종.png','TITLE':'재무국','SEQUENCE':'',}, +# {'이름' : '허남식','소속' : '신라대학교','직책' : '총장','연락처' : '010-9568-3579','주소' : 'president@silla.ac.kr','사진' : 'B_main/images/허남식.png','TITLE':'총장','SEQUENCE':'1',}, +# {'이름' : '이희태','소속' : '신라대학교','직책' : '대학원장','연락처' : '010-3866-4694','주소' : '부산광역시 사상구 백양대로 700번길 140 신라대학교 대학본부 603호','사진' : 'B_main/images/이희태.png','TITLE':'대학원장','SEQUENCE':'2',}, +# {'이름' : '최두원','소속' : '신라대학교','직책' : '부원장','연락처' : '010-2564-1741','주소' : '부산광역시 사상구 백양대로 700번길 140 신라대학교 공학관 910호','사진' : 'B_main/images/최두원.png','TITLE':'부원장','SEQUENCE':'3',}, +] + + diff --git a/B_main/static/B_main/images/desktop.ini b/B_main/static/B_main/images/desktop.ini new file mode 100644 index 0000000..4701c6b --- /dev/null +++ b/B_main/static/B_main/images/desktop.ini @@ -0,0 +1,2 @@ +[LocalizedFileNames] +̴.jpg=@̴,0 diff --git a/B_main/static/B_main/images/강경옥.png b/B_main/static/B_main/images/강경옥.png new file mode 100644 index 0000000..ab51457 Binary files /dev/null and b/B_main/static/B_main/images/강경옥.png differ diff --git a/B_main/static/B_main/images/강규호.png b/B_main/static/B_main/images/강규호.png new file mode 100644 index 0000000..5cf813f Binary files /dev/null and b/B_main/static/B_main/images/강규호.png differ diff --git a/B_main/static/B_main/images/강동혁.png b/B_main/static/B_main/images/강동혁.png new file mode 100644 index 0000000..5760f7d Binary files /dev/null and b/B_main/static/B_main/images/강동혁.png differ diff --git a/B_main/static/B_main/images/강승구.png b/B_main/static/B_main/images/강승구.png new file mode 100644 index 0000000..8410286 Binary files /dev/null and b/B_main/static/B_main/images/강승구.png differ diff --git a/B_main/static/B_main/images/강지훈.png b/B_main/static/B_main/images/강지훈.png new file mode 100644 index 0000000..84c3201 Binary files /dev/null and b/B_main/static/B_main/images/강지훈.png differ diff --git a/B_main/static/B_main/images/고현숙.png b/B_main/static/B_main/images/고현숙.png new file mode 100644 index 0000000..bac179a Binary files /dev/null and b/B_main/static/B_main/images/고현숙.png differ diff --git a/B_main/static/B_main/images/공한수.png b/B_main/static/B_main/images/공한수.png new file mode 100644 index 0000000..294da9b Binary files /dev/null and b/B_main/static/B_main/images/공한수.png differ diff --git a/B_main/static/B_main/images/곽기융.png b/B_main/static/B_main/images/곽기융.png new file mode 100644 index 0000000..aa9ed17 Binary files /dev/null and b/B_main/static/B_main/images/곽기융.png differ diff --git a/B_main/static/B_main/images/권중천.png b/B_main/static/B_main/images/권중천.png new file mode 100644 index 0000000..5585aa2 Binary files /dev/null and b/B_main/static/B_main/images/권중천.png differ diff --git a/B_main/static/B_main/images/김가현.png b/B_main/static/B_main/images/김가현.png new file mode 100644 index 0000000..cbeb638 Binary files /dev/null and b/B_main/static/B_main/images/김가현.png differ diff --git a/B_main/static/B_main/images/김기재.png b/B_main/static/B_main/images/김기재.png new file mode 100644 index 0000000..66ec9a8 Binary files /dev/null and b/B_main/static/B_main/images/김기재.png differ diff --git a/B_main/static/B_main/images/김기호.png b/B_main/static/B_main/images/김기호.png new file mode 100644 index 0000000..36739f4 Binary files /dev/null and b/B_main/static/B_main/images/김기호.png differ diff --git a/B_main/static/B_main/images/김대성.png b/B_main/static/B_main/images/김대성.png new file mode 100644 index 0000000..b69635e Binary files /dev/null and b/B_main/static/B_main/images/김대성.png differ diff --git a/B_main/static/B_main/images/김동화.png b/B_main/static/B_main/images/김동화.png new file mode 100644 index 0000000..0561ee6 Binary files /dev/null and b/B_main/static/B_main/images/김동화.png differ diff --git a/B_main/static/B_main/images/김미경.png b/B_main/static/B_main/images/김미경.png new file mode 100644 index 0000000..2720b73 Binary files /dev/null and b/B_main/static/B_main/images/김미경.png differ diff --git a/B_main/static/B_main/images/김미애.png b/B_main/static/B_main/images/김미애.png new file mode 100644 index 0000000..42ad22c Binary files /dev/null and b/B_main/static/B_main/images/김미애.png differ diff --git a/B_main/static/B_main/images/김민주.png b/B_main/static/B_main/images/김민주.png new file mode 100644 index 0000000..7e7f3bf Binary files /dev/null and b/B_main/static/B_main/images/김민주.png differ diff --git a/B_main/static/B_main/images/김보성.png b/B_main/static/B_main/images/김보성.png new file mode 100644 index 0000000..b47f49a Binary files /dev/null and b/B_main/static/B_main/images/김보성.png differ diff --git a/B_main/static/B_main/images/김봉수.png b/B_main/static/B_main/images/김봉수.png new file mode 100644 index 0000000..ebd3af2 Binary files /dev/null and b/B_main/static/B_main/images/김봉수.png differ diff --git a/B_main/static/B_main/images/김상준.png b/B_main/static/B_main/images/김상준.png new file mode 100644 index 0000000..3f540a1 Binary files /dev/null and b/B_main/static/B_main/images/김상준.png differ diff --git a/B_main/static/B_main/images/김선이.png b/B_main/static/B_main/images/김선이.png new file mode 100644 index 0000000..8fb2ca2 Binary files /dev/null and b/B_main/static/B_main/images/김선이.png differ diff --git a/B_main/static/B_main/images/김성주.png b/B_main/static/B_main/images/김성주.png new file mode 100644 index 0000000..a9a3256 Binary files /dev/null and b/B_main/static/B_main/images/김성주.png differ diff --git a/B_main/static/B_main/images/김성훈.png b/B_main/static/B_main/images/김성훈.png new file mode 100644 index 0000000..cd6f526 Binary files /dev/null and b/B_main/static/B_main/images/김성훈.png differ diff --git a/B_main/static/B_main/images/김영하.png b/B_main/static/B_main/images/김영하.png new file mode 100644 index 0000000..5c2c37a Binary files /dev/null and b/B_main/static/B_main/images/김영하.png differ diff --git a/B_main/static/B_main/images/김영훈.png b/B_main/static/B_main/images/김영훈.png new file mode 100644 index 0000000..3373748 Binary files /dev/null and b/B_main/static/B_main/images/김영훈.png differ diff --git a/B_main/static/B_main/images/김외숙.png b/B_main/static/B_main/images/김외숙.png new file mode 100644 index 0000000..625fd5e Binary files /dev/null and b/B_main/static/B_main/images/김외숙.png differ diff --git a/B_main/static/B_main/images/김용권.png b/B_main/static/B_main/images/김용권.png new file mode 100644 index 0000000..8d93157 Binary files /dev/null and b/B_main/static/B_main/images/김용권.png differ diff --git a/B_main/static/B_main/images/김윤규.png b/B_main/static/B_main/images/김윤규.png new file mode 100644 index 0000000..45a0e45 Binary files /dev/null and b/B_main/static/B_main/images/김윤규.png differ diff --git a/B_main/static/B_main/images/김윤아.png b/B_main/static/B_main/images/김윤아.png new file mode 100644 index 0000000..c3e0f42 Binary files /dev/null and b/B_main/static/B_main/images/김윤아.png differ diff --git a/B_main/static/B_main/images/김은희.png b/B_main/static/B_main/images/김은희.png new file mode 100644 index 0000000..aae956f Binary files /dev/null and b/B_main/static/B_main/images/김은희.png differ diff --git a/B_main/static/B_main/images/김일곤.png b/B_main/static/B_main/images/김일곤.png new file mode 100644 index 0000000..7d9ca96 Binary files /dev/null and b/B_main/static/B_main/images/김일곤.png differ diff --git a/B_main/static/B_main/images/김재준.png b/B_main/static/B_main/images/김재준.png new file mode 100644 index 0000000..e7521c2 Binary files /dev/null and b/B_main/static/B_main/images/김재준.png differ diff --git a/B_main/static/B_main/images/김재홍.png b/B_main/static/B_main/images/김재홍.png new file mode 100644 index 0000000..6482591 Binary files /dev/null and b/B_main/static/B_main/images/김재홍.png differ diff --git a/B_main/static/B_main/images/김정호.png b/B_main/static/B_main/images/김정호.png new file mode 100644 index 0000000..a43bd38 Binary files /dev/null and b/B_main/static/B_main/images/김정호.png differ diff --git a/B_main/static/B_main/images/김준수.png b/B_main/static/B_main/images/김준수.png new file mode 100644 index 0000000..11243f4 Binary files /dev/null and b/B_main/static/B_main/images/김준수.png differ diff --git a/B_main/static/B_main/images/김중선.png b/B_main/static/B_main/images/김중선.png new file mode 100644 index 0000000..f505def Binary files /dev/null and b/B_main/static/B_main/images/김중선.png differ diff --git a/B_main/static/B_main/images/김진홍.png b/B_main/static/B_main/images/김진홍.png new file mode 100644 index 0000000..4fa66c1 Binary files /dev/null and b/B_main/static/B_main/images/김진홍.png differ diff --git a/B_main/static/B_main/images/김태영.png b/B_main/static/B_main/images/김태영.png new file mode 100644 index 0000000..770b67c Binary files /dev/null and b/B_main/static/B_main/images/김태영.png differ diff --git a/B_main/static/B_main/images/김태형.png b/B_main/static/B_main/images/김태형.png new file mode 100644 index 0000000..70cd944 Binary files /dev/null and b/B_main/static/B_main/images/김태형.png differ diff --git a/B_main/static/B_main/images/김한집.png b/B_main/static/B_main/images/김한집.png new file mode 100644 index 0000000..3bbf934 Binary files /dev/null and b/B_main/static/B_main/images/김한집.png differ diff --git a/B_main/static/B_main/images/김현우.png b/B_main/static/B_main/images/김현우.png new file mode 100644 index 0000000..13c7b84 Binary files /dev/null and b/B_main/static/B_main/images/김현우.png differ diff --git a/B_main/static/B_main/images/김현준.png b/B_main/static/B_main/images/김현준.png new file mode 100644 index 0000000..f362792 Binary files /dev/null and b/B_main/static/B_main/images/김현준.png differ diff --git a/B_main/static/B_main/images/김희경(수정).png b/B_main/static/B_main/images/김희경(수정).png new file mode 100644 index 0000000..a2b47bb Binary files /dev/null and b/B_main/static/B_main/images/김희경(수정).png differ diff --git a/B_main/static/B_main/images/김희경.png b/B_main/static/B_main/images/김희경.png new file mode 100644 index 0000000..a3e24b0 Binary files /dev/null and b/B_main/static/B_main/images/김희경.png differ diff --git a/B_main/static/B_main/images/노현주.png b/B_main/static/B_main/images/노현주.png new file mode 100644 index 0000000..5d2e6ab Binary files /dev/null and b/B_main/static/B_main/images/노현주.png differ diff --git a/B_main/static/B_main/images/노희숙.png b/B_main/static/B_main/images/노희숙.png new file mode 100644 index 0000000..0ad3fa7 Binary files /dev/null and b/B_main/static/B_main/images/노희숙.png differ diff --git a/B_main/static/B_main/images/마점래(수정).png b/B_main/static/B_main/images/마점래(수정).png new file mode 100644 index 0000000..57c7062 Binary files /dev/null and b/B_main/static/B_main/images/마점래(수정).png differ diff --git a/B_main/static/B_main/images/마점래.png b/B_main/static/B_main/images/마점래.png new file mode 100644 index 0000000..f329407 Binary files /dev/null and b/B_main/static/B_main/images/마점래.png differ diff --git a/B_main/static/B_main/images/문성배.png b/B_main/static/B_main/images/문성배.png new file mode 100644 index 0000000..4b0d0ed Binary files /dev/null and b/B_main/static/B_main/images/문성배.png differ diff --git a/B_main/static/B_main/images/문정순.png b/B_main/static/B_main/images/문정순.png new file mode 100644 index 0000000..109178f Binary files /dev/null and b/B_main/static/B_main/images/문정순.png differ diff --git a/B_main/static/B_main/images/민수연.png b/B_main/static/B_main/images/민수연.png new file mode 100644 index 0000000..1bce053 Binary files /dev/null and b/B_main/static/B_main/images/민수연.png differ diff --git a/B_main/static/B_main/images/민홍기.png b/B_main/static/B_main/images/민홍기.png new file mode 100644 index 0000000..9a79eb2 Binary files /dev/null and b/B_main/static/B_main/images/민홍기.png differ diff --git a/B_main/static/B_main/images/박강범.png b/B_main/static/B_main/images/박강범.png new file mode 100644 index 0000000..7e08df4 Binary files /dev/null and b/B_main/static/B_main/images/박강범.png differ diff --git a/B_main/static/B_main/images/박경민.png b/B_main/static/B_main/images/박경민.png new file mode 100644 index 0000000..f8f377e Binary files /dev/null and b/B_main/static/B_main/images/박경민.png differ diff --git a/B_main/static/B_main/images/박국제.png b/B_main/static/B_main/images/박국제.png new file mode 100644 index 0000000..0167fec Binary files /dev/null and b/B_main/static/B_main/images/박국제.png differ diff --git a/B_main/static/B_main/images/박대진.png b/B_main/static/B_main/images/박대진.png new file mode 100644 index 0000000..b2c14e3 Binary files /dev/null and b/B_main/static/B_main/images/박대진.png differ diff --git a/B_main/static/B_main/images/박명숙.png b/B_main/static/B_main/images/박명숙.png new file mode 100644 index 0000000..4d29c65 Binary files /dev/null and b/B_main/static/B_main/images/박명숙.png differ diff --git a/B_main/static/B_main/images/박명옥.png b/B_main/static/B_main/images/박명옥.png new file mode 100644 index 0000000..1fcfa01 Binary files /dev/null and b/B_main/static/B_main/images/박명옥.png differ diff --git a/B_main/static/B_main/images/박명진.png b/B_main/static/B_main/images/박명진.png new file mode 100644 index 0000000..f62c5cf Binary files /dev/null and b/B_main/static/B_main/images/박명진.png differ diff --git a/B_main/static/B_main/images/박민희.png b/B_main/static/B_main/images/박민희.png new file mode 100644 index 0000000..1e47419 Binary files /dev/null and b/B_main/static/B_main/images/박민희.png differ diff --git a/B_main/static/B_main/images/박부술.png b/B_main/static/B_main/images/박부술.png new file mode 100644 index 0000000..16dd1fe Binary files /dev/null and b/B_main/static/B_main/images/박부술.png differ diff --git a/B_main/static/B_main/images/박성호.png b/B_main/static/B_main/images/박성호.png new file mode 100644 index 0000000..ff5ecb3 Binary files /dev/null and b/B_main/static/B_main/images/박성호.png differ diff --git a/B_main/static/B_main/images/박성훈.png b/B_main/static/B_main/images/박성훈.png new file mode 100644 index 0000000..5f5fa00 Binary files /dev/null and b/B_main/static/B_main/images/박성훈.png differ diff --git a/B_main/static/B_main/images/박순자.png b/B_main/static/B_main/images/박순자.png new file mode 100644 index 0000000..736f81b Binary files /dev/null and b/B_main/static/B_main/images/박순자.png differ diff --git a/B_main/static/B_main/images/박영우.png b/B_main/static/B_main/images/박영우.png new file mode 100644 index 0000000..0060211 Binary files /dev/null and b/B_main/static/B_main/images/박영우.png differ diff --git a/B_main/static/B_main/images/박영해.png b/B_main/static/B_main/images/박영해.png new file mode 100644 index 0000000..925026e Binary files /dev/null and b/B_main/static/B_main/images/박영해.png differ diff --git a/B_main/static/B_main/images/박재성.png b/B_main/static/B_main/images/박재성.png new file mode 100644 index 0000000..b8e82c5 Binary files /dev/null and b/B_main/static/B_main/images/박재성.png differ diff --git a/B_main/static/B_main/images/박정숙.png b/B_main/static/B_main/images/박정숙.png new file mode 100644 index 0000000..c283099 Binary files /dev/null and b/B_main/static/B_main/images/박정숙.png differ diff --git a/B_main/static/B_main/images/박정은.png b/B_main/static/B_main/images/박정은.png new file mode 100644 index 0000000..1d59b1a Binary files /dev/null and b/B_main/static/B_main/images/박정은.png differ diff --git a/B_main/static/B_main/images/박종인.png b/B_main/static/B_main/images/박종인.png new file mode 100644 index 0000000..67beadb Binary files /dev/null and b/B_main/static/B_main/images/박종인.png differ diff --git a/B_main/static/B_main/images/박주원(수정).png b/B_main/static/B_main/images/박주원(수정).png new file mode 100644 index 0000000..a7eb814 Binary files /dev/null and b/B_main/static/B_main/images/박주원(수정).png differ diff --git a/B_main/static/B_main/images/박주원.png b/B_main/static/B_main/images/박주원.png new file mode 100644 index 0000000..7332285 Binary files /dev/null and b/B_main/static/B_main/images/박주원.png differ diff --git a/B_main/static/B_main/images/박지환.png b/B_main/static/B_main/images/박지환.png new file mode 100644 index 0000000..41abe6f Binary files /dev/null and b/B_main/static/B_main/images/박지환.png differ diff --git a/B_main/static/B_main/images/배기중.png b/B_main/static/B_main/images/배기중.png new file mode 100644 index 0000000..b4306e3 Binary files /dev/null and b/B_main/static/B_main/images/배기중.png differ diff --git a/B_main/static/B_main/images/배범한.png b/B_main/static/B_main/images/배범한.png new file mode 100644 index 0000000..93b9515 Binary files /dev/null and b/B_main/static/B_main/images/배범한.png differ diff --git a/B_main/static/B_main/images/배성효.png b/B_main/static/B_main/images/배성효.png new file mode 100644 index 0000000..c8af8d0 Binary files /dev/null and b/B_main/static/B_main/images/배성효.png differ diff --git a/B_main/static/B_main/images/변연옥.png b/B_main/static/B_main/images/변연옥.png new file mode 100644 index 0000000..684f079 Binary files /dev/null and b/B_main/static/B_main/images/변연옥.png differ diff --git a/B_main/static/B_main/images/빈윤진.png b/B_main/static/B_main/images/빈윤진.png new file mode 100644 index 0000000..ed8c060 Binary files /dev/null and b/B_main/static/B_main/images/빈윤진.png differ diff --git a/B_main/static/B_main/images/서강섭.png b/B_main/static/B_main/images/서강섭.png new file mode 100644 index 0000000..b5cb681 Binary files /dev/null and b/B_main/static/B_main/images/서강섭.png differ diff --git a/B_main/static/B_main/images/서지윤.png b/B_main/static/B_main/images/서지윤.png new file mode 100644 index 0000000..d46dddb Binary files /dev/null and b/B_main/static/B_main/images/서지윤.png differ diff --git a/B_main/static/B_main/images/성동화.png b/B_main/static/B_main/images/성동화.png new file mode 100644 index 0000000..c441457 Binary files /dev/null and b/B_main/static/B_main/images/성동화.png differ diff --git a/B_main/static/B_main/images/성충식.png b/B_main/static/B_main/images/성충식.png new file mode 100644 index 0000000..b8b0724 Binary files /dev/null and b/B_main/static/B_main/images/성충식.png differ diff --git a/B_main/static/B_main/images/손동현.png b/B_main/static/B_main/images/손동현.png new file mode 100644 index 0000000..c25e365 Binary files /dev/null and b/B_main/static/B_main/images/손동현.png differ diff --git a/B_main/static/B_main/images/송연익.png b/B_main/static/B_main/images/송연익.png new file mode 100644 index 0000000..898a6ff Binary files /dev/null and b/B_main/static/B_main/images/송연익.png differ diff --git a/B_main/static/B_main/images/심수현.png b/B_main/static/B_main/images/심수현.png new file mode 100644 index 0000000..6537589 Binary files /dev/null and b/B_main/static/B_main/images/심수현.png differ diff --git a/B_main/static/B_main/images/안복지.png b/B_main/static/B_main/images/안복지.png new file mode 100644 index 0000000..e113457 Binary files /dev/null and b/B_main/static/B_main/images/안복지.png differ diff --git a/B_main/static/B_main/images/안상배.png b/B_main/static/B_main/images/안상배.png new file mode 100644 index 0000000..ae1c0fe Binary files /dev/null and b/B_main/static/B_main/images/안상배.png differ diff --git a/B_main/static/B_main/images/안영봉.png b/B_main/static/B_main/images/안영봉.png new file mode 100644 index 0000000..200e180 Binary files /dev/null and b/B_main/static/B_main/images/안영봉.png differ diff --git a/B_main/static/B_main/images/양재진.png b/B_main/static/B_main/images/양재진.png new file mode 100644 index 0000000..a1773d2 Binary files /dev/null and b/B_main/static/B_main/images/양재진.png differ diff --git a/B_main/static/B_main/images/어익수.png b/B_main/static/B_main/images/어익수.png new file mode 100644 index 0000000..b28e582 Binary files /dev/null and b/B_main/static/B_main/images/어익수.png differ diff --git a/B_main/static/B_main/images/엄신아.png b/B_main/static/B_main/images/엄신아.png new file mode 100644 index 0000000..5d8df64 Binary files /dev/null and b/B_main/static/B_main/images/엄신아.png differ diff --git a/B_main/static/B_main/images/여은주.png b/B_main/static/B_main/images/여은주.png new file mode 100644 index 0000000..ced3f82 Binary files /dev/null and b/B_main/static/B_main/images/여은주.png differ diff --git a/B_main/static/B_main/images/예영숙.png b/B_main/static/B_main/images/예영숙.png new file mode 100644 index 0000000..1ece167 Binary files /dev/null and b/B_main/static/B_main/images/예영숙.png differ diff --git a/B_main/static/B_main/images/오용택.png b/B_main/static/B_main/images/오용택.png new file mode 100644 index 0000000..a9da755 Binary files /dev/null and b/B_main/static/B_main/images/오용택.png differ diff --git a/B_main/static/B_main/images/오원재.png b/B_main/static/B_main/images/오원재.png new file mode 100644 index 0000000..2dddf95 Binary files /dev/null and b/B_main/static/B_main/images/오원재.png differ diff --git a/B_main/static/B_main/images/유석찬.png b/B_main/static/B_main/images/유석찬.png new file mode 100644 index 0000000..f83416c Binary files /dev/null and b/B_main/static/B_main/images/유석찬.png differ diff --git a/B_main/static/B_main/images/이기영.png b/B_main/static/B_main/images/이기영.png new file mode 100644 index 0000000..886cc36 Binary files /dev/null and b/B_main/static/B_main/images/이기영.png differ diff --git a/B_main/static/B_main/images/이대명.png b/B_main/static/B_main/images/이대명.png new file mode 100644 index 0000000..0f7b440 Binary files /dev/null and b/B_main/static/B_main/images/이대명.png differ diff --git a/B_main/static/B_main/images/이두홍.png b/B_main/static/B_main/images/이두홍.png new file mode 100644 index 0000000..4560083 Binary files /dev/null and b/B_main/static/B_main/images/이두홍.png differ diff --git a/B_main/static/B_main/images/이범민.png b/B_main/static/B_main/images/이범민.png new file mode 100644 index 0000000..27bb875 Binary files /dev/null and b/B_main/static/B_main/images/이범민.png differ diff --git a/B_main/static/B_main/images/이상경.png b/B_main/static/B_main/images/이상경.png new file mode 100644 index 0000000..fd6d301 Binary files /dev/null and b/B_main/static/B_main/images/이상경.png differ diff --git a/B_main/static/B_main/images/이상규.png b/B_main/static/B_main/images/이상규.png new file mode 100644 index 0000000..85404b3 Binary files /dev/null and b/B_main/static/B_main/images/이상규.png differ diff --git a/B_main/static/B_main/images/이상민.png b/B_main/static/B_main/images/이상민.png new file mode 100644 index 0000000..a90bac4 Binary files /dev/null and b/B_main/static/B_main/images/이상민.png differ diff --git a/B_main/static/B_main/images/이수연.png b/B_main/static/B_main/images/이수연.png new file mode 100644 index 0000000..4d7decb Binary files /dev/null and b/B_main/static/B_main/images/이수연.png differ diff --git a/B_main/static/B_main/images/이순옥.png b/B_main/static/B_main/images/이순옥.png new file mode 100644 index 0000000..38441ec Binary files /dev/null and b/B_main/static/B_main/images/이순옥.png differ diff --git a/B_main/static/B_main/images/이승규.png b/B_main/static/B_main/images/이승규.png new file mode 100644 index 0000000..e839ab7 Binary files /dev/null and b/B_main/static/B_main/images/이승규.png differ diff --git a/B_main/static/B_main/images/이영희.png b/B_main/static/B_main/images/이영희.png new file mode 100644 index 0000000..17eb685 Binary files /dev/null and b/B_main/static/B_main/images/이영희.png differ diff --git a/B_main/static/B_main/images/이인숙.png b/B_main/static/B_main/images/이인숙.png new file mode 100644 index 0000000..8b33a9e Binary files /dev/null and b/B_main/static/B_main/images/이인숙.png differ diff --git a/B_main/static/B_main/images/이정문.png b/B_main/static/B_main/images/이정문.png new file mode 100644 index 0000000..b3c3894 Binary files /dev/null and b/B_main/static/B_main/images/이정문.png differ diff --git a/B_main/static/B_main/images/이주영.png b/B_main/static/B_main/images/이주영.png new file mode 100644 index 0000000..dce70b2 Binary files /dev/null and b/B_main/static/B_main/images/이주영.png differ diff --git a/B_main/static/B_main/images/이학민.png b/B_main/static/B_main/images/이학민.png new file mode 100644 index 0000000..884b6ca Binary files /dev/null and b/B_main/static/B_main/images/이학민.png differ diff --git a/B_main/static/B_main/images/이향숙.png b/B_main/static/B_main/images/이향숙.png new file mode 100644 index 0000000..c7abd1b Binary files /dev/null and b/B_main/static/B_main/images/이향숙.png differ diff --git a/B_main/static/B_main/images/이현수.png b/B_main/static/B_main/images/이현수.png new file mode 100644 index 0000000..c28699a Binary files /dev/null and b/B_main/static/B_main/images/이현수.png differ diff --git a/B_main/static/B_main/images/이현우.png b/B_main/static/B_main/images/이현우.png new file mode 100644 index 0000000..223553b Binary files /dev/null and b/B_main/static/B_main/images/이현우.png differ diff --git a/B_main/static/B_main/images/이현욱.png b/B_main/static/B_main/images/이현욱.png new file mode 100644 index 0000000..ed5e425 Binary files /dev/null and b/B_main/static/B_main/images/이현욱.png differ diff --git a/B_main/static/B_main/images/이현정.png b/B_main/static/B_main/images/이현정.png new file mode 100644 index 0000000..aeb5c7e Binary files /dev/null and b/B_main/static/B_main/images/이현정.png differ diff --git a/B_main/static/B_main/images/이화경.png b/B_main/static/B_main/images/이화경.png new file mode 100644 index 0000000..1905db2 Binary files /dev/null and b/B_main/static/B_main/images/이화경.png differ diff --git a/B_main/static/B_main/images/이효영.png b/B_main/static/B_main/images/이효영.png new file mode 100644 index 0000000..2e44c3d Binary files /dev/null and b/B_main/static/B_main/images/이효영.png differ diff --git a/B_main/static/B_main/images/이희태.png b/B_main/static/B_main/images/이희태.png new file mode 100644 index 0000000..6cd61d0 Binary files /dev/null and b/B_main/static/B_main/images/이희태.png differ diff --git a/B_main/static/B_main/images/임문수.png b/B_main/static/B_main/images/임문수.png new file mode 100644 index 0000000..c89dfd0 Binary files /dev/null and b/B_main/static/B_main/images/임문수.png differ diff --git a/B_main/static/B_main/images/임영민.png b/B_main/static/B_main/images/임영민.png new file mode 100644 index 0000000..cf87075 Binary files /dev/null and b/B_main/static/B_main/images/임영민.png differ diff --git a/B_main/static/B_main/images/임윤택.png b/B_main/static/B_main/images/임윤택.png new file mode 100644 index 0000000..979716c Binary files /dev/null and b/B_main/static/B_main/images/임윤택.png differ diff --git a/B_main/static/B_main/images/임창섭(수정).png b/B_main/static/B_main/images/임창섭(수정).png new file mode 100644 index 0000000..eefc90d Binary files /dev/null and b/B_main/static/B_main/images/임창섭(수정).png differ diff --git a/B_main/static/B_main/images/임창섭.png b/B_main/static/B_main/images/임창섭.png new file mode 100644 index 0000000..65baea9 Binary files /dev/null and b/B_main/static/B_main/images/임창섭.png differ diff --git a/B_main/static/B_main/images/장은화.png b/B_main/static/B_main/images/장은화.png new file mode 100644 index 0000000..9090018 Binary files /dev/null and b/B_main/static/B_main/images/장은화.png differ diff --git a/B_main/static/B_main/images/장지훈.png b/B_main/static/B_main/images/장지훈.png new file mode 100644 index 0000000..16d4839 Binary files /dev/null and b/B_main/static/B_main/images/장지훈.png differ diff --git a/B_main/static/B_main/images/장현정.png b/B_main/static/B_main/images/장현정.png new file mode 100644 index 0000000..2beac0f Binary files /dev/null and b/B_main/static/B_main/images/장현정.png differ diff --git a/B_main/static/B_main/images/전미영.png b/B_main/static/B_main/images/전미영.png new file mode 100644 index 0000000..ac28dd2 Binary files /dev/null and b/B_main/static/B_main/images/전미영.png differ diff --git a/B_main/static/B_main/images/전병웅(수정).png b/B_main/static/B_main/images/전병웅(수정).png new file mode 100644 index 0000000..bcb465e Binary files /dev/null and b/B_main/static/B_main/images/전병웅(수정).png differ diff --git a/B_main/static/B_main/images/전병웅.png b/B_main/static/B_main/images/전병웅.png new file mode 100644 index 0000000..85d03e7 Binary files /dev/null and b/B_main/static/B_main/images/전병웅.png differ diff --git a/B_main/static/B_main/images/전성훈.png b/B_main/static/B_main/images/전성훈.png new file mode 100644 index 0000000..ec4b2d4 Binary files /dev/null and b/B_main/static/B_main/images/전성훈.png differ diff --git a/B_main/static/B_main/images/전종태.png b/B_main/static/B_main/images/전종태.png new file mode 100644 index 0000000..946b34e Binary files /dev/null and b/B_main/static/B_main/images/전종태.png differ diff --git a/B_main/static/B_main/images/전희충.png b/B_main/static/B_main/images/전희충.png new file mode 100644 index 0000000..ea27cb0 Binary files /dev/null and b/B_main/static/B_main/images/전희충.png differ diff --git a/B_main/static/B_main/images/정석민.png b/B_main/static/B_main/images/정석민.png new file mode 100644 index 0000000..d8fade8 Binary files /dev/null and b/B_main/static/B_main/images/정석민.png differ diff --git a/B_main/static/B_main/images/정용표.png b/B_main/static/B_main/images/정용표.png new file mode 100644 index 0000000..e095ad8 Binary files /dev/null and b/B_main/static/B_main/images/정용표.png differ diff --git a/B_main/static/B_main/images/정윤목.png b/B_main/static/B_main/images/정윤목.png new file mode 100644 index 0000000..f5f07cd Binary files /dev/null and b/B_main/static/B_main/images/정윤목.png differ diff --git a/B_main/static/B_main/images/정의석.png b/B_main/static/B_main/images/정의석.png new file mode 100644 index 0000000..df4535f Binary files /dev/null and b/B_main/static/B_main/images/정의석.png differ diff --git a/B_main/static/B_main/images/정종복.png b/B_main/static/B_main/images/정종복.png new file mode 100644 index 0000000..ac72127 Binary files /dev/null and b/B_main/static/B_main/images/정종복.png differ diff --git a/B_main/static/B_main/images/정형재.png b/B_main/static/B_main/images/정형재.png new file mode 100644 index 0000000..a91b277 Binary files /dev/null and b/B_main/static/B_main/images/정형재.png differ diff --git a/B_main/static/B_main/images/제권진.png b/B_main/static/B_main/images/제권진.png new file mode 100644 index 0000000..936e6e6 Binary files /dev/null and b/B_main/static/B_main/images/제권진.png differ diff --git a/B_main/static/B_main/images/제오수(수정).png b/B_main/static/B_main/images/제오수(수정).png new file mode 100644 index 0000000..86dccff Binary files /dev/null and b/B_main/static/B_main/images/제오수(수정).png differ diff --git a/B_main/static/B_main/images/제오수.png b/B_main/static/B_main/images/제오수.png new file mode 100644 index 0000000..013c0cf Binary files /dev/null and b/B_main/static/B_main/images/제오수.png differ diff --git a/B_main/static/B_main/images/제일호.png b/B_main/static/B_main/images/제일호.png new file mode 100644 index 0000000..5fa5a9b Binary files /dev/null and b/B_main/static/B_main/images/제일호.png differ diff --git a/B_main/static/B_main/images/조승민.png b/B_main/static/B_main/images/조승민.png new file mode 100644 index 0000000..25c66a3 Binary files /dev/null and b/B_main/static/B_main/images/조승민.png differ diff --git a/B_main/static/B_main/images/조엘리사.png b/B_main/static/B_main/images/조엘리사.png new file mode 100644 index 0000000..41f4e5c Binary files /dev/null and b/B_main/static/B_main/images/조엘리사.png differ diff --git a/B_main/static/B_main/images/조정래.png b/B_main/static/B_main/images/조정래.png new file mode 100644 index 0000000..d33c7e8 Binary files /dev/null and b/B_main/static/B_main/images/조정래.png differ diff --git a/B_main/static/B_main/images/주진우.png b/B_main/static/B_main/images/주진우.png new file mode 100644 index 0000000..38fcd59 Binary files /dev/null and b/B_main/static/B_main/images/주진우.png differ diff --git a/B_main/static/B_main/images/주효정.png b/B_main/static/B_main/images/주효정.png new file mode 100644 index 0000000..dd9bb87 Binary files /dev/null and b/B_main/static/B_main/images/주효정.png differ diff --git a/B_main/static/B_main/images/진서윤.png b/B_main/static/B_main/images/진서윤.png new file mode 100644 index 0000000..92a31cc Binary files /dev/null and b/B_main/static/B_main/images/진서윤.png differ diff --git a/B_main/static/B_main/images/진종규.png b/B_main/static/B_main/images/진종규.png new file mode 100644 index 0000000..e9541bb Binary files /dev/null and b/B_main/static/B_main/images/진종규.png differ diff --git a/B_main/static/B_main/images/최대경.png b/B_main/static/B_main/images/최대경.png new file mode 100644 index 0000000..541bde2 Binary files /dev/null and b/B_main/static/B_main/images/최대경.png differ diff --git a/B_main/static/B_main/images/최두원.png b/B_main/static/B_main/images/최두원.png new file mode 100644 index 0000000..85d831b Binary files /dev/null and b/B_main/static/B_main/images/최두원.png differ diff --git a/B_main/static/B_main/images/최승자.png b/B_main/static/B_main/images/최승자.png new file mode 100644 index 0000000..d980607 Binary files /dev/null and b/B_main/static/B_main/images/최승자.png differ diff --git a/B_main/static/B_main/images/최유심.png b/B_main/static/B_main/images/최유심.png new file mode 100644 index 0000000..35ddb3f Binary files /dev/null and b/B_main/static/B_main/images/최유심.png differ diff --git a/B_main/static/B_main/images/최정현(수정).png b/B_main/static/B_main/images/최정현(수정).png new file mode 100644 index 0000000..ebe9279 Binary files /dev/null and b/B_main/static/B_main/images/최정현(수정).png differ diff --git a/B_main/static/B_main/images/최정현.png b/B_main/static/B_main/images/최정현.png new file mode 100644 index 0000000..afe93af Binary files /dev/null and b/B_main/static/B_main/images/최정현.png differ diff --git a/B_main/static/B_main/images/최준익.png b/B_main/static/B_main/images/최준익.png new file mode 100644 index 0000000..ec20169 Binary files /dev/null and b/B_main/static/B_main/images/최준익.png differ diff --git a/B_main/static/B_main/images/최진봉.png b/B_main/static/B_main/images/최진봉.png new file mode 100644 index 0000000..029c170 Binary files /dev/null and b/B_main/static/B_main/images/최진봉.png differ diff --git a/B_main/static/B_main/images/하익수.png b/B_main/static/B_main/images/하익수.png new file mode 100644 index 0000000..9158e67 Binary files /dev/null and b/B_main/static/B_main/images/하익수.png differ diff --git a/B_main/static/B_main/images/한윤철.png b/B_main/static/B_main/images/한윤철.png new file mode 100644 index 0000000..a5358c6 Binary files /dev/null and b/B_main/static/B_main/images/한윤철.png differ diff --git a/B_main/static/B_main/images/허남식.png b/B_main/static/B_main/images/허남식.png new file mode 100644 index 0000000..8cdc232 Binary files /dev/null and b/B_main/static/B_main/images/허남식.png differ diff --git a/B_main/static/B_main/images/허성우.png b/B_main/static/B_main/images/허성우.png new file mode 100644 index 0000000..e57fe35 Binary files /dev/null and b/B_main/static/B_main/images/허성우.png differ diff --git a/B_main/static/B_main/images/현광열.png b/B_main/static/B_main/images/현광열.png new file mode 100644 index 0000000..9a91928 Binary files /dev/null and b/B_main/static/B_main/images/현광열.png differ diff --git a/B_main/static/B_main/images/황미영.png b/B_main/static/B_main/images/황미영.png new file mode 100644 index 0000000..25d8a86 Binary files /dev/null and b/B_main/static/B_main/images/황미영.png differ diff --git a/B_main/static/B_main/images/황순민.png b/B_main/static/B_main/images/황순민.png new file mode 100644 index 0000000..523571a Binary files /dev/null and b/B_main/static/B_main/images/황순민.png differ diff --git a/B_main/static/B_main/images/황윤미.png b/B_main/static/B_main/images/황윤미.png new file mode 100644 index 0000000..d005919 Binary files /dev/null and b/B_main/static/B_main/images/황윤미.png differ diff --git a/B_main/static/B_main/images/황진순.png b/B_main/static/B_main/images/황진순.png new file mode 100644 index 0000000..dcd0093 Binary files /dev/null and b/B_main/static/B_main/images/황진순.png differ diff --git a/B_main/static/B_main/images/황태욱.png b/B_main/static/B_main/images/황태욱.png new file mode 100644 index 0000000..cffeeec Binary files /dev/null and b/B_main/static/B_main/images/황태욱.png differ diff --git a/B_main/static/B_main/images/황하섭.png b/B_main/static/B_main/images/황하섭.png new file mode 100644 index 0000000..666f527 Binary files /dev/null and b/B_main/static/B_main/images/황하섭.png differ diff --git a/B_main/static/B_main/images/황현숙.png b/B_main/static/B_main/images/황현숙.png new file mode 100644 index 0000000..5102602 Binary files /dev/null and b/B_main/static/B_main/images/황현숙.png differ diff --git a/B_main/static/B_main/images/황현종.png b/B_main/static/B_main/images/황현종.png new file mode 100644 index 0000000..0951be7 Binary files /dev/null and b/B_main/static/B_main/images/황현종.png differ diff --git a/B_main/templates/B_main/main(darkmode).htm b/B_main/templates/B_main/main(darkmode).htm new file mode 100644 index 0000000..96b907e --- /dev/null +++ b/B_main/templates/B_main/main(darkmode).htm @@ -0,0 +1,39 @@ +{% load static %} + + + + + + 신라대학교 AMP 제8기 + + + + +
+

신라대학교 AMP 제8기

+ + +
+ +
+ + +
+ {% for person in people %} + {% include 'B_main/partials/card.htm' %} + {% endfor %} +
+
+ + diff --git a/B_main/templates/B_main/main.htm b/B_main/templates/B_main/main.htm new file mode 100644 index 0000000..eca73d5 --- /dev/null +++ b/B_main/templates/B_main/main.htm @@ -0,0 +1,112 @@ +{% load static %} + + + + + + 신라대학교 AMP 제8기 + + + + + + + +
+ +
+

신라대학교 AMP 제8기

+ + + +
+ + +
+ +
+ + +
+ {% for person in people %} + {% include 'B_main/partials/card.htm' %} + {% endfor %} +
+
+ + + + \ No newline at end of file diff --git a/B_main/templates/B_main/partials/card.htm b/B_main/templates/B_main/partials/card.htm new file mode 100644 index 0000000..8f87290 --- /dev/null +++ b/B_main/templates/B_main/partials/card.htm @@ -0,0 +1,112 @@ +{% load static %} +
+ + + + +
+
+
+

+ {{ person.이름 }} + {% if person.생년월일 %} + ({{ person.생년월일 }}) + {% endif %} +

+
+ {% if person.TITLE %} + {% if person.TITLE == '회장' or person.TITLE == '수석부회장' or person.TITLE == '선임상임부회장' or person.TITLE == '고문회장'%} + + {{ person.TITLE }} + + {% elif "경조국" in person.TITLE or "기획사무국" in person.TITLE or "홍보국" in person.TITLE or "친교문화국" in person.TITLE or "재무국" in person.TITLE %} + + {{ person.TITLE }} + + {% else %} + + {{ person.TITLE }} + + {% endif %} + {% endif %} +
+ +
+
+ 소속: + {{ person.소속 }} +
+
+ 직책: + {{ person.직책 }} +
+
+ 연락처: + {{ person.연락처 }} +
+
+ {% if person.이름 == '허남식' %} + 이메일: + {% else %} + 주소: + {% endif %} + {{ person.주소 }} +
+
+
+
+ + + + + \ No newline at end of file diff --git a/B_main/templates/B_main/partials/card_list.htm b/B_main/templates/B_main/partials/card_list.htm new file mode 100644 index 0000000..b77e2ac --- /dev/null +++ b/B_main/templates/B_main/partials/card_list.htm @@ -0,0 +1,4 @@ +{% load static %} +{% for person in people %} + {% include 'B_main/partials/card.htm' %} +{% endfor %} diff --git a/B_main/templates/B_main/password.htm b/B_main/templates/B_main/password.htm new file mode 100644 index 0000000..b20f2f4 --- /dev/null +++ b/B_main/templates/B_main/password.htm @@ -0,0 +1,41 @@ +{% load static %} + + + + + + 신라대학교 AMP 제8기 + + + +
+

Welcome

+ + {% if error %} +

{{ error }}

+ {% endif %} + +
+ {% csrf_token %} +
+ +
+ +
+ +
+
+
+ + diff --git a/B_main/tests.py b/B_main/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/B_main/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/B_main/urls.py b/B_main/urls.py new file mode 100644 index 0000000..9431680 --- /dev/null +++ b/B_main/urls.py @@ -0,0 +1,11 @@ +from django.contrib import admin +from django.urls import path +from . import views + +urlpatterns = [ + path('', views.main, name='main'), + path('vcard//', views.vcard_download, name='vcard_download'), + path('search/', views.search_people, name='search_people'), + path('password/', views.password_required, name='password_required'), + path('logout/', views.logout_view, name='logout'), +] diff --git a/B_main/views.py b/B_main/views.py new file mode 100644 index 0000000..f0a82fe --- /dev/null +++ b/B_main/views.py @@ -0,0 +1,120 @@ +from django.shortcuts import render, redirect +from django.http import HttpResponse +from urllib.parse import unquote +from .peopleinfo import PEOPLE + + +def password_required(request): + PASSWORD = '1110' # 실제 비밀번호 + + if request.method == "POST": + entered_password = request.POST.get("password") + if entered_password == PASSWORD: + request.session["authenticated"] = True + next_url = request.POST.get("next", "/") + + if not next_url: + next_url = "/" + + return redirect(next_url) + else: + return render(request, "B_main/password.htm", {"error": "Incorrect password. Please try again."}) + + # GET 요청 시 비밀번호 입력 폼 렌더링 + next_url = request.GET.get("next", "/") + return render(request, "B_main/password.htm", {"next": next_url}) + + +# 인증 검사 함수 +def check_authentication(request): + if not request.session.get("authenticated"): + return redirect(f"/password/?next={request.path}") + return None + + +def main(request): + # 인증 확인 + auth_check = check_authentication(request) + print('auth_check: ', auth_check) + if auth_check: + return auth_check + + def sort_key(person): + sequence = person.get('SEQUENCE') + # SEQUENCE가 존재하면 정수로 변환하여 가장 먼저, 없으면 무한대로 설정 + return (int(sequence) if sequence else float('inf'), person['이름']) + + sorted_people = sorted(PEOPLE, key=sort_key) + + context = { + 'people': sorted_people + } + return render(request, 'B_main/main.htm', context) + + +def vcard_download(request, name): + # 인증 확인 + auth_check = check_authentication(request) + if auth_check: + return auth_check + + name = unquote(name) + person = next((p for p in PEOPLE if p['이름'] == name), None) + + if not person: + return HttpResponse("잘못된 이름입니다.", status=404) + + vcard_content = f"""BEGIN:VCARD +VERSION:3.0 +N:{person['이름']};;;; +FN:{person['이름']} +ORG:{person['소속']} +TITLE:{person['직책']} +TEL;CELL:{person['연락처']} +ADR:;;{person['주소']} +END:VCARD +""" + + response = HttpResponse(vcard_content, content_type='text/vcard') + response['Content-Disposition'] = f'attachment; filename="{person["이름"]}.vcf"' + return response + + +def search_people(request): + # 인증 확인 + auth_check = check_authentication(request) + if auth_check: + return auth_check + + query = request.GET.get('search', '').strip() + + # query가 빈 문자열이면 전체 반환 + if not query: + filtered = PEOPLE + else: + filtered = [ + p for p in PEOPLE + if query in p.get('이름', '') + or query in p.get('소속', '') + or query in p.get('직책', '') + or query in p.get('연락처', '') + or query in p.get('주소', '') + or query in p.get('생년월일', '') + or query in p.get('TITLE', '') + ] + + def sort_key(person): + sequence = person.get('SEQUENCE') + # SEQUENCE가 존재하면 정수로 변환하여 가장 먼저, 없으면 무한대로 설정 + return (int(sequence) if sequence else float('inf'), person['이름']) + + sorted_people = sorted(filtered, key=sort_key) + + + return render(request, 'B_main/partials/card_list.htm', {'people': sorted_people}) + + + +def logout_view(request): + request.session.flush() + return redirect('/password/') \ No newline at end of file diff --git a/invite.txt b/invite.txt new file mode 100644 index 0000000..4d99dcb --- /dev/null +++ b/invite.txt @@ -0,0 +1,24 @@ +안녕하십니까, + +신라대학교 AMP 8기 원우수첩 온라인 버전 관련하여 아래 설명 참고바랍니다. + + 1. 정보확인 및 수정요청 관련 + 원우수첩의 내용 중 본인의 정보에 혹시 오류가 있다면 저에게 알려주시기 바랍니다. + 혹시 사진 교체가 필요한 경우 사진을 보내주시면 업데이트 하도록 하겠습니다. + + 2. 검색기능 안내 + 검색 부분에는 이름, 소속, 생년월일, 연락처를 비롯한 모든 정보를 검색 대상으로 하고 있습니다. + 예를 들어 회장 이라고 입력하면 회장님, 부회장님, 본인 회사에서 회장님 등이 검색되며, + 1979라고 입력하면 1979년생 혹은 전화번호 등의 정보에 1979가 포함된 사람이 모두 검색됩니다. + + 3. 접속 및 보안 관련사항 + 비밀번호는 1110 입니다. 이 주소록은 개인의 로그인시스템이 아닌 입장코드를 가지고 있으면 접속가능한 시스템 입니다. + 비밀번호는 주기적으로 변경 후 공지할 계획이며, 혹시 변경이 필요하다고 판단되는 경우 요청해주시면 그때그때 수정하도록 하겠습니다. + + 4. 개인정보 보호 주의사항 + 본 페이지는 오프라인 수첩(PDF 포함)과 마찬가지로 상당량의 개인정보를 포함하고 있습니다. + 아무쪼록 외부에 유출되지 않도록 보안에도 신경써 주시기를 부탁드립니다. + + + +감사합니다. \ No newline at end of file diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..9127d0e --- /dev/null +++ b/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'A_core.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main()