|
|
@@ -0,0 +1,521 @@ |
|
|
. |
|
|
├── deploy.py |
|
|
├── deploy.py~ |
|
|
├── design |
|
|
│ ├── css |
|
|
│ │ ├── screen.css |
|
|
│ │ └── style.css |
|
|
│ ├── default.html |
|
|
│ ├── images |
|
|
│ │ ├── arrow.png |
|
|
│ │ ├── butoon-sep.png |
|
|
│ │ ├── button.png |
|
|
│ │ ├── check.png |
|
|
│ │ ├── close.png |
|
|
│ │ ├── cycle.png |
|
|
│ │ ├── icon.png |
|
|
│ │ ├── ico.png |
|
|
│ │ ├── list-bg.png |
|
|
│ │ ├── loader.gif |
|
|
│ │ ├── logo9226.png |
|
|
│ │ ├── logo.png |
|
|
│ │ ├── noimage.png |
|
|
│ │ ├── option.png |
|
|
│ │ └── search.png |
|
|
│ ├── js |
|
|
│ │ ├── func.js |
|
|
│ │ ├── function.js |
|
|
│ │ ├── jquery.infieldlabel.min.js |
|
|
│ │ └── jquery.min.js |
|
|
│ └── main.html |
|
|
├── fdk |
|
|
│ ├── application.py |
|
|
│ ├── apps |
|
|
│ │ ├── articles |
|
|
│ │ │ ├── forms.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ ├── models.py |
|
|
│ │ │ └── views.py |
|
|
│ │ ├── education |
|
|
│ │ │ ├── forms.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ ├── models.py |
|
|
│ │ │ └── views.py |
|
|
│ │ ├── __init__.py |
|
|
│ │ ├── job |
|
|
│ │ │ ├── forms.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ ├── models.py |
|
|
│ │ │ └── views |
|
|
│ │ │ ├── company.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ ├── job.py |
|
|
│ │ │ ├── opportunity.py |
|
|
│ │ │ └── questionnaire.py |
|
|
│ │ ├── message |
|
|
│ │ │ ├── forms.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ ├── models.py |
|
|
│ │ │ └── views.py |
|
|
│ │ ├── profile |
|
|
│ │ │ ├── consts.py |
|
|
│ │ │ ├── forms.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ ├── models.py |
|
|
│ │ │ ├── urls.py |
|
|
│ │ │ └── views.py |
|
|
│ │ ├── projects |
|
|
│ │ │ ├── forms.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ ├── models.py |
|
|
│ │ │ └── views.py |
|
|
│ │ ├── registration |
|
|
│ │ │ ├── forms.py |
|
|
│ │ │ ├── __init__.py |
|
|
│ │ │ └── views.py |
|
|
│ │ └── site |
|
|
│ │ ├── forms.py |
|
|
│ │ ├── __init__.py |
|
|
│ │ ├── models.py |
|
|
│ │ └── views.py |
|
|
│ ├── babel.cfg |
|
|
│ ├── config.py |
|
|
│ ├── data |
|
|
│ │ ├── countries.py |
|
|
│ │ └── __init__.py |
|
|
│ ├── extensions.py |
|
|
│ ├── helpers.py |
|
|
│ ├── __init__.py |
|
|
│ ├── libs |
|
|
│ │ ├── calverter.py |
|
|
│ │ └── __init__.py |
|
|
│ ├── media |
|
|
│ │ ├── fonts |
|
|
│ │ │ ├── arial.ttf |
|
|
│ │ │ ├── irsans.ttf |
|
|
│ │ │ ├── Monaco_Linux.ttf |
|
|
│ │ │ └── StringIO |
|
|
│ │ ├── statics |
|
|
│ │ │ ├── blue |
|
|
│ │ │ │ ├── css |
|
|
│ │ │ │ │ ├── cal |
|
|
│ │ │ │ │ │ ├── aqua |
|
|
│ │ │ │ │ │ │ ├── active-bg.gif |
|
|
│ │ │ │ │ │ │ ├── dark-bg.gif |
|
|
│ │ │ │ │ │ │ ├── hover-bg.gif |
|
|
│ │ │ │ │ │ │ ├── menuarrow.gif |
|
|
│ │ │ │ │ │ │ ├── normal-bg.gif |
|
|
│ │ │ │ │ │ │ ├── rowhover-bg.gif |
|
|
│ │ │ │ │ │ │ ├── status-bg.gif |
|
|
│ │ │ │ │ │ │ ├── theme.css |
|
|
│ │ │ │ │ │ │ ├── title-bg.gif |
|
|
│ │ │ │ │ │ │ └── today-bg.gif |
|
|
│ │ │ │ │ │ ├── calendar-blue2.css |
|
|
│ │ │ │ │ │ ├── calendar-blue.css |
|
|
│ │ │ │ │ │ ├── calendar-brown.css |
|
|
│ │ │ │ │ │ ├── calendar-green.css |
|
|
│ │ │ │ │ │ ├── calendar-system.css |
|
|
│ │ │ │ │ │ ├── calendar-tas.css |
|
|
│ │ │ │ │ │ ├── calendar-win2k-1.css |
|
|
│ │ │ │ │ │ ├── calendar-win2k-2.css |
|
|
│ │ │ │ │ │ ├── calendar-win2k-cold-1.css |
|
|
│ │ │ │ │ │ ├── calendar-win2k-cold-2.css |
|
|
│ │ │ │ │ │ ├── menuarrow2.gif |
|
|
│ │ │ │ │ │ └── menuarrow.gif |
|
|
│ │ │ │ │ ├── front.css |
|
|
│ │ │ │ │ ├── images |
|
|
│ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png |
|
|
│ │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png |
|
|
│ │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png |
|
|
│ │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png |
|
|
│ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png |
|
|
│ │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png |
|
|
│ │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png |
|
|
│ │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png |
|
|
│ │ │ │ │ │ ├── ui-icons_217bc0_256x240.png |
|
|
│ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png |
|
|
│ │ │ │ │ │ ├── ui-icons_469bdd_256x240.png |
|
|
│ │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png |
|
|
│ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png |
|
|
│ │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png |
|
|
│ │ │ │ │ │ └── ui-icons_f9bd01_256x240.png |
|
|
│ │ │ │ │ ├── jquery.tagit.css |
|
|
│ │ │ │ │ ├── jquery-ui-1.9.2.custom.min.css |
|
|
│ │ │ │ │ ├── jquery.ui.datepicker.css |
|
|
│ │ │ │ │ ├── screen.css |
|
|
│ │ │ │ │ ├── style.css |
|
|
│ │ │ │ │ └── tagit.ui-zendesk.css |
|
|
│ │ │ │ ├── images |
|
|
│ │ │ │ │ ├── add.png |
|
|
│ │ │ │ │ ├── arrow.png |
|
|
│ │ │ │ │ ├── butoon-sep.png |
|
|
│ │ │ │ │ ├── button.png |
|
|
│ │ │ │ │ ├── check.png |
|
|
│ │ │ │ │ ├── close.png |
|
|
│ │ │ │ │ ├── cycle.png |
|
|
│ │ │ │ │ ├── delete.png |
|
|
│ │ │ │ │ ├── edit.png |
|
|
│ │ │ │ │ ├── icon.png |
|
|
│ │ │ │ │ ├── ico.png |
|
|
│ │ │ │ │ ├── jqui |
|
|
│ │ │ │ │ ├── list-bg.png |
|
|
│ │ │ │ │ ├── loader.gif |
|
|
│ │ │ │ │ ├── logo9226.png |
|
|
│ │ │ │ │ ├── logo.png |
|
|
│ │ │ │ │ ├── logo-white.png |
|
|
│ │ │ │ │ ├── noimage.png |
|
|
│ │ │ │ │ ├── noimage-small.png |
|
|
│ │ │ │ │ ├── noimage-tiny.png |
|
|
│ │ │ │ │ ├── option.png |
|
|
│ │ │ │ │ ├── search.png |
|
|
│ │ │ │ │ └── shot1.png |
|
|
│ │ │ │ └── js |
|
|
│ │ │ │ ├── front |
|
|
│ │ │ │ │ ├── buttons.js |
|
|
│ │ │ │ │ └── forms.js |
|
|
│ │ │ │ ├── function.js |
|
|
│ │ │ │ ├── fw.js |
|
|
│ │ │ │ ├── libs |
|
|
│ │ │ │ │ ├── calendar.all.js |
|
|
│ │ │ │ │ ├── calendar.js |
|
|
│ │ │ │ │ ├── display_more.js |
|
|
│ │ │ │ │ ├── jquery-1.8.2.js |
|
|
│ │ │ │ │ ├── jquery-1.8.2.min.js |
|
|
│ │ │ │ │ ├── jquery.infieldlabel.min.js |
|
|
│ │ │ │ │ ├── jquery.min.js |
|
|
│ │ │ │ │ ├── jquery-ui-1.9.2.custom.min.js |
|
|
│ │ │ │ │ ├── jquery.ui.datepicker-cc.all.min.js |
|
|
│ │ │ │ │ ├── jquery.ui.datepicker-cc-fa.js |
|
|
│ │ │ │ │ ├── jquery.ui.datepicker-cc.js |
|
|
│ │ │ │ │ ├── placeholder.js |
|
|
│ │ │ │ │ ├── shahin.js |
|
|
│ │ │ │ │ └── tag-it.min.js |
|
|
│ │ │ │ └── page |
|
|
│ │ │ │ ├── forms.js |
|
|
│ │ │ │ └── sidebar.js |
|
|
│ │ │ ├── favicon.ico |
|
|
│ │ │ ├── fdk |
|
|
│ │ │ │ ├── css |
|
|
│ │ │ │ │ ├── fam.css |
|
|
│ │ │ │ │ └── style.css |
|
|
│ │ │ │ ├── images |
|
|
│ │ │ │ │ ├── famfamfam.png |
|
|
│ │ │ │ │ └── logo.png |
|
|
│ │ │ │ └── js |
|
|
│ │ │ │ ├── jquery.min.js |
|
|
│ │ │ │ └── jquery.tabify.js |
|
|
│ │ │ └── grey |
|
|
│ │ │ ├── css |
|
|
│ │ │ │ ├── cal |
|
|
│ │ │ │ │ ├── aqua |
|
|
│ │ │ │ │ │ ├── active-bg.gif |
|
|
│ │ │ │ │ │ ├── dark-bg.gif |
|
|
│ │ │ │ │ │ ├── hover-bg.gif |
|
|
│ │ │ │ │ │ ├── menuarrow.gif |
|
|
│ │ │ │ │ │ ├── normal-bg.gif |
|
|
│ │ │ │ │ │ ├── rowhover-bg.gif |
|
|
│ │ │ │ │ │ ├── status-bg.gif |
|
|
│ │ │ │ │ │ ├── theme.css |
|
|
│ │ │ │ │ │ ├── title-bg.gif |
|
|
│ │ │ │ │ │ └── today-bg.gif |
|
|
│ │ │ │ │ ├── calendar-blue2.css |
|
|
│ │ │ │ │ ├── calendar-blue.css |
|
|
│ │ │ │ │ ├── calendar-brown.css |
|
|
│ │ │ │ │ ├── calendar-green.css |
|
|
│ │ │ │ │ ├── calendar-system.css |
|
|
│ │ │ │ │ ├── calendar-tas.css |
|
|
│ │ │ │ │ ├── calendar-win2k-1.css |
|
|
│ │ │ │ │ ├── calendar-win2k-2.css |
|
|
│ │ │ │ │ ├── calendar-win2k-cold-1.css |
|
|
│ │ │ │ │ ├── calendar-win2k-cold-2.css |
|
|
│ │ │ │ │ ├── menuarrow2.gif |
|
|
│ │ │ │ │ └── menuarrow.gif |
|
|
│ │ │ │ ├── images |
|
|
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png |
|
|
│ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png |
|
|
│ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png |
|
|
│ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png |
|
|
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png |
|
|
│ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png |
|
|
│ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png |
|
|
│ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png |
|
|
│ │ │ │ │ ├── ui-icons_217bc0_256x240.png |
|
|
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png |
|
|
│ │ │ │ │ ├── ui-icons_469bdd_256x240.png |
|
|
│ │ │ │ │ ├── ui-icons_6da8d5_256x240.png |
|
|
│ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png |
|
|
│ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png |
|
|
│ │ │ │ │ └── ui-icons_f9bd01_256x240.png |
|
|
│ │ │ │ ├── jquery.tagit.css |
|
|
│ │ │ │ ├── jquery-ui-1.9.2.custom.min.css |
|
|
│ │ │ │ ├── jquery.ui.datepicker.css |
|
|
│ │ │ │ ├── screen.css |
|
|
│ │ │ │ ├── style.css |
|
|
│ │ │ │ └── tagit.ui-zendesk.css |
|
|
│ │ │ ├── images |
|
|
│ │ │ │ ├── arrow.png |
|
|
│ │ │ │ ├── butoon-sep.png |
|
|
│ │ │ │ ├── button.png |
|
|
│ │ │ │ ├── check.png |
|
|
│ │ │ │ ├── close.png |
|
|
│ │ │ │ ├── cycle.png |
|
|
│ │ │ │ ├── delete.png |
|
|
│ │ │ │ ├── edit.png |
|
|
│ │ │ │ ├── icon.png |
|
|
│ │ │ │ ├── ico.png |
|
|
│ │ │ │ ├── jqui |
|
|
│ │ │ │ ├── list-bg.png |
|
|
│ │ │ │ ├── loader.gif |
|
|
│ │ │ │ ├── logo9226.png |
|
|
│ │ │ │ ├── logo.png |
|
|
│ │ │ │ ├── noimage.png |
|
|
│ │ │ │ ├── option.png |
|
|
│ │ │ │ └── search.png |
|
|
│ │ │ └── js |
|
|
│ │ │ ├── front |
|
|
│ │ │ │ ├── buttons.js |
|
|
│ │ │ │ └── forms.js |
|
|
│ │ │ ├── function.js |
|
|
│ │ │ ├── fw.js |
|
|
│ │ │ ├── libs |
|
|
│ │ │ │ ├── calendar.all.js |
|
|
│ │ │ │ ├── calendar.js |
|
|
│ │ │ │ ├── jquery-1.8.2.js |
|
|
│ │ │ │ ├── jquery-1.8.2.min.js |
|
|
│ │ │ │ ├── jquery.infieldlabel.min.js |
|
|
│ │ │ │ ├── jquery.min.js |
|
|
│ │ │ │ ├── jquery-ui-1.9.2.custom.min.js |
|
|
│ │ │ │ ├── jquery.ui.datepicker-cc.all.min.js |
|
|
│ │ │ │ ├── jquery.ui.datepicker-cc-fa.js |
|
|
│ │ │ │ ├── jquery.ui.datepicker-cc.js |
|
|
│ │ │ │ ├── placeholder.js |
|
|
│ │ │ │ └── tag-it.min.js |
|
|
│ │ │ └── page |
|
|
│ │ │ ├── forms.js |
|
|
│ │ │ └── sidebar.js |
|
|
│ │ ├── temp |
|
|
│ │ │ └── avatar |
|
|
│ │ │ ├── 16c7ff2e90841df49107ce223c5845fe7355ec59 |
|
|
│ │ │ ├── 16c7ff2e90841df49107ce223c5845fe7355ec59.jpg |
|
|
│ │ │ ├── 217a6e13db82d2ad795ff6e2ccca0bdeecfa6aca |
|
|
│ │ │ ├── 26457c052044c173f66aa342360afd82adbc5737 |
|
|
│ │ │ ├── 32205805399ab976429fcb3e1bb9124d352174ed |
|
|
│ │ │ ├── 352e88379817e01ade27d200706a651d5cb0adee |
|
|
│ │ │ ├── 37e51c6f94b98d5250c96b9e29410be59e55f0f2 |
|
|
│ │ │ ├── 37e51c6f94b98d5250c96b9e29410be59e55f0f2.jpg |
|
|
│ │ │ ├── 421e22c01b3c8517bdfc59f8d2d88c8b385e38c2.jpg |
|
|
│ │ │ ├── 4dacee2984d00c8b732ce94ff173997913027101 |
|
|
│ │ │ ├── 793f73ed9e90ec39ae65397eb6fe7913137420c8 |
|
|
│ │ │ ├── 87ebb92325d8c207fb3f19a348d43c637f151aee |
|
|
│ │ │ ├── 87ebb92325d8c207fb3f19a348d43c637f151aee.jpg |
|
|
│ │ │ ├── 8ab37646debed0db6abb13d998ade7300e20e640.jpg |
|
|
│ │ │ ├── 8ab37646debed0db6abb13d998ade7300e20e640_thumb.jpg |
|
|
│ │ │ ├── 9199c9967fb873a8dab997a60f29146e0e96b6de |
|
|
│ │ │ ├── a36e834d555429724f8cab69c24e2d3421c89086 |
|
|
│ │ │ ├── b13d860c23c5fd1ebf535ff851a7b15281a1aa0f |
|
|
│ │ │ ├── b6bfb48325277e05800460d426a4d4df5ecf626e.jpg |
|
|
│ │ │ ├── b6bfb48325277e05800460d426a4d4df5ecf626e_thumb.jpg |
|
|
│ │ │ ├── c0506523ea9725d3f7ddbe0f7e03f40e4a4ffce7.jpg |
|
|
│ │ │ ├── c0506523ea9725d3f7ddbe0f7e03f40e4a4ffce7_micro.jpg |
|
|
│ │ │ ├── c0506523ea9725d3f7ddbe0f7e03f40e4a4ffce7_thumb.jpg |
|
|
│ │ │ ├── de7716ba3f6a73d33130edfa329d620bd3164aaf |
|
|
│ │ │ └── f298cbfedc105d9ec0130ff5afd31fdf530e5fa7 |
|
|
│ │ └── templates |
|
|
│ │ ├── blue |
|
|
│ │ │ ├── account |
|
|
│ │ │ │ ├── activity.html |
|
|
│ │ │ │ ├── autocomplete.html |
|
|
│ │ │ │ ├── friends_list.html |
|
|
│ │ │ │ ├── language.html |
|
|
│ │ │ │ ├── myprofile.html |
|
|
│ │ │ │ ├── old_profile.html |
|
|
│ │ │ │ ├── pdf.html |
|
|
│ │ │ │ ├── profile.html |
|
|
│ │ │ │ ├── resume.html |
|
|
│ │ │ │ ├── search.html |
|
|
│ │ │ │ ├── skills_edit.html |
|
|
│ │ │ │ ├── skills.html |
|
|
│ │ │ │ └── websites.html |
|
|
│ │ │ ├── articles |
|
|
│ │ │ │ └── articles.html |
|
|
│ │ │ ├── base_form.html |
|
|
│ │ │ ├── base.html |
|
|
│ │ │ ├── education |
|
|
│ │ │ │ ├── education.html |
|
|
│ │ │ │ ├── institute.html |
|
|
│ │ │ │ └── institute_list.html |
|
|
│ │ │ ├── errors |
|
|
│ │ │ │ ├── 403.html |
|
|
│ │ │ │ ├── 404.html |
|
|
│ │ │ │ ├── 500.html |
|
|
│ │ │ │ └── 500.html~ |
|
|
│ │ │ ├── _formHelper.html |
|
|
│ │ │ ├── form.html |
|
|
│ │ │ ├── header_menu.html |
|
|
│ │ │ ├── index.html |
|
|
│ │ │ ├── job |
|
|
│ │ │ │ ├── answers.html |
|
|
│ │ │ │ ├── company.html |
|
|
│ │ │ │ ├── company_list.html |
|
|
│ │ │ │ ├── job.html |
|
|
│ │ │ │ ├── job_opportunity.html |
|
|
│ │ │ │ ├── job_opportunity_list.html |
|
|
│ │ │ │ └── questions.html |
|
|
│ │ │ ├── job_sidebar.html |
|
|
│ │ │ ├── message |
|
|
│ │ │ │ ├── box.html |
|
|
│ │ │ │ └── message.html |
|
|
│ │ │ ├── pdf.html |
|
|
│ │ │ ├── projects |
|
|
│ │ │ │ └── projects.html |
|
|
│ │ │ ├── registration |
|
|
│ │ │ │ ├── activate.html |
|
|
│ │ │ │ ├── activation_email_subject.txt |
|
|
│ │ │ │ ├── activation_email.txt |
|
|
│ │ │ │ ├── forget_password.html |
|
|
│ │ │ │ ├── login.html |
|
|
│ │ │ │ ├── logout.html |
|
|
│ │ │ │ ├── password_change_done.html |
|
|
│ │ │ │ ├── password_change_form.html |
|
|
│ │ │ │ ├── password_reset_complete.html |
|
|
│ │ │ │ ├── password_reset_confirm.html |
|
|
│ │ │ │ ├── password_reset_done.html |
|
|
│ │ │ │ ├── password_reset_email.html |
|
|
│ │ │ │ ├── password_reset_form.html |
|
|
│ │ │ │ ├── register.html |
|
|
│ │ │ │ ├── registration_complete.html |
|
|
│ │ │ │ ├── registration_form.html |
|
|
│ │ │ │ ├── registration_mail.html |
|
|
│ │ │ │ └── succesful.html |
|
|
│ │ │ ├── sidebar.html |
|
|
│ │ │ ├── site |
|
|
│ │ │ │ ├── about.html |
|
|
│ │ │ │ └── tos.html |
|
|
│ │ │ ├── sub_header_menu.html |
|
|
│ │ │ └── succesful.html |
|
|
│ │ ├── fdk |
|
|
│ │ │ ├── account |
|
|
│ │ │ │ ├── login.html |
|
|
│ │ │ │ ├── profile.html |
|
|
│ │ │ │ └── resume.html |
|
|
│ │ │ ├── base.html |
|
|
│ │ │ ├── education |
|
|
│ │ │ │ └── education.html |
|
|
│ │ │ ├── errors |
|
|
│ │ │ │ ├── 403.html |
|
|
│ │ │ │ ├── 404.html |
|
|
│ │ │ │ ├── 500.html |
|
|
│ │ │ │ └── 500.html~ |
|
|
│ │ │ ├── form.html |
|
|
│ │ │ ├── index.html |
|
|
│ │ │ ├── job |
|
|
│ │ │ │ ├── company.html |
|
|
│ │ │ │ ├── company_list.html |
|
|
│ │ │ │ ├── job.html |
|
|
│ │ │ │ ├── job_opportunity.html |
|
|
│ │ │ │ └── job_opportunity_list.html |
|
|
│ │ │ ├── registration |
|
|
│ │ │ │ ├── activate.html |
|
|
│ │ │ │ ├── activation_email_subject.txt |
|
|
│ │ │ │ ├── activation_email.txt |
|
|
│ │ │ │ ├── login.html |
|
|
│ │ │ │ ├── logout.html |
|
|
│ │ │ │ ├── password_change_done.html |
|
|
│ │ │ │ ├── password_change_form.html |
|
|
│ │ │ │ ├── password_reset_complete.html |
|
|
│ │ │ │ ├── password_reset_confirm.html |
|
|
│ │ │ │ ├── password_reset_done.html |
|
|
│ │ │ │ ├── password_reset_email.html |
|
|
│ │ │ │ ├── password_reset_form.html |
|
|
│ │ │ │ ├── register.html |
|
|
│ │ │ │ ├── registration_complete.html |
|
|
│ │ │ │ ├── registration_form.html |
|
|
│ │ │ │ └── succesful.html |
|
|
│ │ │ ├── sidebar.html |
|
|
│ │ │ └── succesful.html |
|
|
│ │ └── grey |
|
|
│ │ ├── account |
|
|
│ │ │ ├── friends_list.html |
|
|
│ │ │ ├── profile.html |
|
|
│ │ │ ├── public_profile.html |
|
|
│ │ │ ├── resume.html |
|
|
│ │ │ ├── search.html |
|
|
│ │ │ ├── skill_autocomplete.html |
|
|
│ │ │ ├── skills_form.html |
|
|
│ │ │ └── skills.html |
|
|
│ │ ├── articles |
|
|
│ │ │ └── articles.html |
|
|
│ │ ├── base.html |
|
|
│ │ ├── education |
|
|
│ │ │ ├── education.html |
|
|
│ │ │ ├── institute.html |
|
|
│ │ │ └── institute_list.html |
|
|
│ │ ├── errors |
|
|
│ │ │ ├── 403.html |
|
|
│ │ │ ├── 404.html |
|
|
│ │ │ ├── 500.html |
|
|
│ │ │ └── 500.html~ |
|
|
│ │ ├── _formHelper.html |
|
|
│ │ ├── form.html |
|
|
│ │ ├── header_menu.html |
|
|
│ │ ├── index.html |
|
|
│ │ ├── job |
|
|
│ │ │ ├── company.html |
|
|
│ │ │ ├── company_list.html |
|
|
│ │ │ ├── job.html |
|
|
│ │ │ ├── job_opportunity.html |
|
|
│ │ │ ├── job_opportunity_list.html |
|
|
│ │ │ └── questions.html |
|
|
│ │ ├── pdf.html |
|
|
│ │ ├── projects |
|
|
│ │ │ └── projects.html |
|
|
│ │ ├── public_base.html |
|
|
│ │ ├── registration |
|
|
│ │ │ ├── activate.html |
|
|
│ │ │ ├── activation_email_subject.txt |
|
|
│ │ │ ├── activation_email.txt |
|
|
│ │ │ ├── forget_password.html |
|
|
│ │ │ ├── login.html |
|
|
│ │ │ ├── logout.html |
|
|
│ │ │ ├── password_change_done.html |
|
|
│ │ │ ├── password_change_form.html |
|
|
│ │ │ ├── password_reset_complete.html |
|
|
│ │ │ ├── password_reset_confirm.html |
|
|
│ │ │ ├── password_reset_done.html |
|
|
│ │ │ ├── password_reset_email.html |
|
|
│ │ │ ├── password_reset_form.html |
|
|
│ │ │ ├── register.html |
|
|
│ │ │ ├── registration_complete.html |
|
|
│ │ │ ├── registration_form.html |
|
|
│ │ │ └── succesful.html |
|
|
│ │ ├── sidebar.html |
|
|
│ │ ├── site |
|
|
│ │ │ ├── about.html |
|
|
│ │ │ └── tos.html |
|
|
│ │ └── succesful.html |
|
|
│ ├── messages.pot |
|
|
│ ├── __pycache__ |
|
|
│ ├── translations |
|
|
│ │ └── fa |
|
|
│ │ └── LC_MESSAGES |
|
|
│ │ ├── messages.mo |
|
|
│ │ └── messages.po |
|
|
│ └── utils |
|
|
│ ├── activity.py |
|
|
│ ├── auth.py |
|
|
│ ├── date.py |
|
|
│ ├── form.py |
|
|
│ ├── __init__.py |
|
|
│ ├── mail.py |
|
|
│ ├── pdf.py |
|
|
│ ├── pdfs.py |
|
|
│ ├── template_filters.py |
|
|
│ ├── template.py |
|
|
│ └── text.py |
|
|
├── gunicorn.conf |
|
|
├── __init__.py |
|
|
├── run.py |
|
|
├── tree |
|
|
└── wsgi.py~ |
|
|
|
|
|
79 directories, 439 files |