├── README.md ├── assets ├── Seelife Charity-doc │ ├── _DS_Store │ ├── css │ │ ├── _DS_Store │ │ ├── font-awesome.min.css │ │ ├── main.css │ │ └── normalize.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── _DS_Store │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ └── logo.png │ ├── index.html │ ├── js │ │ ├── _DS_Store │ │ ├── custom.js │ │ ├── jquery-1.11.0.min.js │ │ └── jquery.nav.js │ └── syntax-highlighter │ │ ├── _DS_Store │ │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css ├── admin │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── css │ ├── bootstrap.css │ ├── font-awesome.min.css │ ├── responsive.css │ ├── style.css │ └── style.css.map ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── img │ ├── about-img.jpg │ ├── account.png │ ├── banner │ │ ├── banner-2.jpg │ │ ├── banner-map.png │ │ ├── banner.jpg │ │ └── home-banner.jpg │ ├── blog │ │ ├── add.jpg │ │ ├── author.png │ │ ├── c1.jpg │ │ ├── c2.jpg │ │ ├── c3.jpg │ │ ├── c4.jpg │ │ ├── c5.jpg │ │ ├── c6.jpg │ │ ├── cat-post │ │ │ ├── cat-post-1.jpg │ │ │ ├── cat-post-2.jpg │ │ │ └── cat-post-3.jpg │ │ ├── causes │ │ │ ├── causes-1.jpg │ │ │ ├── causes-2.jpg │ │ │ └── causes-3.jpg │ │ ├── feature-img1.jpg │ │ ├── main-blog │ │ │ ├── m-blog-1.jpg │ │ │ ├── m-blog-2.jpg │ │ │ ├── m-blog-3.jpg │ │ │ ├── m-blog-4.jpg │ │ │ └── m-blog-5.jpg │ │ ├── next.jpg │ │ ├── popular-post │ │ │ ├── post1.jpg │ │ │ ├── post2.jpg │ │ │ ├── post3.jpg │ │ │ └── post4.jpg │ │ ├── post-img1.jpg │ │ ├── post-img2.jpg │ │ └── prev.jpg │ ├── causes │ │ ├── c1.png │ │ ├── c2.png │ │ └── c3.png │ ├── dropdownIcon.png │ ├── elements │ │ ├── _DS_Store │ │ ├── a.jpg │ │ ├── a2.jpg │ │ ├── d.jpg │ │ ├── disabled-check.png │ │ ├── disabled-radio.png │ │ ├── f1.jpg │ │ ├── f2.jpg │ │ ├── f3.jpg │ │ ├── f4.jpg │ │ ├── f5.jpg │ │ ├── f6.jpg │ │ ├── f7.jpg │ │ ├── f8.jpg │ │ ├── g1.jpg │ │ ├── g2.jpg │ │ ├── g3.jpg │ │ ├── g4.jpg │ │ ├── g5.jpg │ │ ├── g6.jpg │ │ ├── g7.jpg │ │ ├── g8.jpg │ │ ├── primary-check.png │ │ ├── primary-radio.png │ │ ├── success-check.png │ │ ├── success-radio.png │ │ ├── user1.png │ │ └── user2.png │ ├── event │ │ ├── e1.jpg │ │ ├── e2.jpg │ │ ├── e3.jpg │ │ ├── e4.jpg │ │ └── event-details.jpg │ ├── features │ │ ├── fc1.jpg │ │ ├── fc2.jpg │ │ └── fc3.jpg │ ├── fevicon.png │ ├── gallery │ │ ├── g1.jpg │ │ ├── g2.jpg │ │ ├── g3.jpg │ │ ├── g4.jpg │ │ ├── g5.jpg │ │ └── g6.jpg │ ├── logo.png │ ├── search.png │ ├── signupLogin.jpg │ ├── story │ │ ├── s1.jpg │ │ ├── s2.jpg │ │ └── s3.jpg │ ├── subscribe-bg.jpg │ └── voluteer │ │ ├── v1.jpg │ │ ├── v2.jpg │ │ ├── v3.jpg │ │ └── v4.jpg ├── js │ ├── bootstrap.min.js │ ├── contact.js │ ├── countdown.js │ ├── custom.js │ ├── gmaps.min.js │ ├── jquery-3.2.1.min.js │ ├── jquery.ajaxchimp.min.js │ ├── jquery.form.js │ ├── jquery.validate.min.js │ ├── mail-script.js │ ├── popper.js │ ├── stellar.js │ └── theme.js ├── scss │ ├── _blog.scss │ ├── _breadcrumb.scss │ ├── _contact.scss │ ├── _elements.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _home.scss │ ├── _predefine.scss │ ├── _reset.scss │ ├── _variables.scss │ └── style.scss ├── signUpForm │ ├── css │ │ ├── sourcesanspro-font.css │ │ └── style.css │ ├── fonts │ │ └── Source_Sans_Pro │ │ │ ├── OFL.txt │ │ │ ├── SourceSansPro-Black.ttf │ │ │ ├── SourceSansPro-BlackItalic.ttf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ ├── SourceSansPro-BoldItalic.ttf │ │ │ ├── SourceSansPro-ExtraLight.ttf │ │ │ ├── SourceSansPro-ExtraLightItalic.ttf │ │ │ ├── SourceSansPro-Italic.ttf │ │ │ ├── SourceSansPro-Light.ttf │ │ │ ├── SourceSansPro-LightItalic.ttf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ ├── SourceSansPro-SemiBold.ttf │ │ │ └── SourceSansPro-SemiBoldItalic.ttf │ └── images │ │ └── signupLogin.jpg └── vendors │ ├── animate-css │ ├── animate.css │ └── wow.min.js │ ├── bootstrap-datepicker │ ├── bootstrap-datetimepicker.min.css │ ├── bootstrap-datetimepicker.min.js │ ├── bootstrap-select.css │ └── bootstrap-select.js │ ├── counter-up │ ├── jquery.counterup.js │ └── jquery.waypoints.min.js │ ├── flipclock │ └── timer.js │ ├── isotope │ ├── imagesloaded.pkgd.min.js │ └── isotope-min.js │ ├── jquery-ui │ ├── jquery-ui.css │ └── jquery-ui.js │ ├── lightbox │ ├── simpleLightbox.css │ └── simpleLightbox.min.js │ ├── linericon │ ├── fonts │ │ ├── Linearicons-Free.eot │ │ ├── Linearicons-Free.svg │ │ ├── Linearicons-Free.ttf │ │ ├── Linearicons-Free.woff │ │ └── Linearicons-Free.woff2 │ └── style.css │ ├── nice-select │ ├── css │ │ ├── nice-select.css │ │ └── style.css │ └── js │ │ ├── jquery.nice-select.js │ │ └── jquery.nice-select.min.js │ └── owl-carousel │ ├── assets │ ├── ajax-loader.gif │ ├── animated.css │ └── owl.carousel.css │ ├── owl.carousel.min.css │ └── owl.carousel.min.js ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ ├── utils.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200607_1740.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20200607_1740.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── manage.py ├── media ├── alomgir.png ├── alomgir_JAgbeUf.png ├── alomgir_g08qB5w.png ├── bokkor.png ├── bokkor_fjE0kXw.png ├── faruque.png ├── halim.png ├── halim_ki2X5Rl.png ├── homePageGallary │ └── 2020 │ │ ├── 03 │ │ └── 14 │ │ │ ├── halim.png │ │ │ ├── jesan.png │ │ │ ├── mhafuz.png │ │ │ ├── musab.png │ │ │ ├── mustafiz.png │ │ │ └── seko.png │ │ └── 06 │ │ └── 08 │ │ ├── halim.png │ │ ├── jesan.png │ │ ├── mhafuz.png │ │ ├── musab.png │ │ ├── mustafiz.png │ │ ├── seko.png │ │ └── tuhin.png ├── homePageNonProfitCharitiesPic │ └── 2020 │ │ ├── 03 │ │ ├── 14 │ │ │ ├── 183585.jpg │ │ │ ├── bloodCampaign.jpg │ │ │ ├── bloodCampaign_0Z9qBzJ.jpg │ │ │ └── foodaid.jpg │ │ └── 16 │ │ │ ├── blood.jpg │ │ │ ├── children.jfif │ │ │ ├── clothing.jpg │ │ │ ├── culture.jpg │ │ │ ├── differentlyAbled.jpg │ │ │ ├── environment.jpg │ │ │ ├── finance.jpg │ │ │ ├── food.jpg │ │ │ ├── health.jpg │ │ │ └── refugees.jpg │ │ ├── 04 │ │ └── 12 │ │ │ └── refugees.jpg │ │ └── 06 │ │ └── 08 │ │ ├── blood.jpg │ │ ├── children.jfif │ │ ├── clothing.jpg │ │ ├── culture.jpg │ │ ├── differentlyAbled.jpg │ │ ├── environment.jpg │ │ ├── finance.jpg │ │ ├── food.jpg │ │ ├── health.jpg │ │ └── refugees.jpg ├── homePageOurLatestStory │ └── 2020 │ │ ├── 03 │ │ └── 16 │ │ │ ├── chorona.jpg │ │ │ ├── chorona_nk6YsiX.jpg │ │ │ ├── foodAid.jpg │ │ │ ├── nha-covid-campaign.jpg │ │ │ └── refugee-image.jpg │ │ └── 06 │ │ └── 08 │ │ ├── chorona_nk6YsiX.jpg │ │ ├── foodAid.jpg │ │ └── refugee-image.jpg ├── homePageUpcomingEvents │ └── 2020 │ │ ├── 03 │ │ └── 16 │ │ │ ├── education.jpg │ │ │ ├── feeding_program_png.png │ │ │ └── whatson_guide_2018_OrphanCloth.jpg │ │ └── 06 │ │ └── 08 │ │ ├── education.jpg │ │ ├── feeding_program_png.png │ │ └── whatson_guide_2018_OrphanCloth.jpg ├── imageGallary │ └── 2020 │ │ ├── 03 │ │ └── 19 │ │ │ ├── g1.jpg │ │ │ ├── g1_AoAoDIb.jpg │ │ │ ├── g1_q7fF4yR.jpg │ │ │ ├── g2.jpg │ │ │ ├── g2_pkMPIpD.jpg │ │ │ ├── g3.jpg │ │ │ ├── g4.jpg │ │ │ ├── g5.jpg │ │ │ ├── g6.jpg │ │ │ ├── g7.jpg │ │ │ └── g8.jpg │ │ └── 06 │ │ └── 08 │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg ├── images.jpg ├── imdadul.png ├── information │ └── 2020 │ │ ├── 03 │ │ ├── 20 │ │ │ ├── Food-Aid-Foundation-1024x681.jpg │ │ │ ├── association-rohingya-society-of-malaysia-rsm-ipoh-branch-768x576.jpg │ │ │ ├── cakne-768x576.jpg │ │ │ ├── hhp_2-768x576.jpg │ │ │ ├── mhf_1-768x432.jpg │ │ │ └── waja-home-768x576.jpg │ │ └── 24 │ │ │ ├── 1148814_764399076922543_869083742_n.jpg │ │ │ ├── IMG_1883-e1506767907907-768x576.jpg │ │ │ ├── Rahoma-fakir.jpg │ │ │ ├── ghca_1-768x576.jpg │ │ │ ├── gt-community-care-768x576.jpg │ │ │ ├── pekaka.jpg │ │ │ ├── persatuan-kebajikan-keluarga-harapan-kluang-johor-768x576_1.jpg │ │ │ ├── persatuan-rumah-kebajikan-rita.jpg │ │ │ ├── pertubuhan-pembangunan-kendiri-wanita-dan-gadis-women-girls.png │ │ │ ├── rainbow-of-love-768x571_1.jpg │ │ │ ├── rumah-amal-suci-rohani-1.jpg │ │ │ ├── self-empowerment-educational-development-society-seeds-768x373.jpg │ │ │ └── yakin-malaysia-other-communities-768x574.jpg │ │ └── 06 │ │ └── 08 │ │ ├── 1148814_764399076922543_869083742_n.jpg │ │ ├── Food-Aid-Foundation-1024x681.jpg │ │ ├── IMG_1883-e1506767907907-768x576.jpg │ │ ├── Rahoma-fakir.jpg │ │ ├── association-rohingya-society-of-malaysia-rsm-ipoh-branch-768x576.jpg │ │ ├── cakne-768x576.jpg │ │ ├── cakne-768x576_JG6XpaN.jpg │ │ ├── ghca_1-768x576.jpg │ │ ├── gt-community-care-768x576.jpg │ │ ├── mhf_1-768x432.jpg │ │ ├── pekaka.jpg │ │ ├── persatuan-kebajikan-keluarga-harapan-kluang-johor-768x576_1.jpg │ │ ├── persatuan-rumah-kebajikan-rita.jpg │ │ ├── pertubuhan-pembangunan-kendiri-wanita-dan-gadis-women-girls.png │ │ ├── rainbow-of-love-768x571_1.jpg │ │ ├── rumah-amal-suci-rohani-1.jpg │ │ ├── self-empowerment-educational-development-society-seeds-768x373.jpg │ │ ├── waja-home-768x576.jpg │ │ └── yakin-malaysia-other-communities-768x574.jpg ├── jesan.png ├── jesan_YVpmUtP.png ├── kawsar.png ├── kawsar_nYTrzF3.png ├── majorObjectives │ └── 2020 │ │ ├── 03 │ │ └── 19 │ │ │ ├── c1.png │ │ │ ├── c2.png │ │ │ ├── c3.png │ │ │ ├── c4.png │ │ │ ├── c5.png │ │ │ └── c6.png │ │ └── 06 │ │ └── 08 │ │ ├── c1.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ ├── c5.png │ │ └── c6.png ├── mhafuz.png ├── mhafuz_LVc2Z6s.png ├── musab.png ├── musab_b2R8BcD.png ├── mustafiz.png ├── nazrul.png ├── nazrul_P2TXTK3.png ├── profilePictures │ ├── 2020 │ │ ├── 03 │ │ │ └── 15 │ │ │ │ ├── nazrul.png │ │ │ │ └── tuhin.png │ │ └── 06 │ │ │ └── 08 │ │ │ └── tuhin.png │ └── user.png ├── seko.png ├── seko_AkVOAqA.png ├── shahalam.png ├── sumon.png ├── sumon_3vmLihA.png ├── sumon_83lax1D.png ├── sumon_ShgvjF0.png ├── sumon_oXToiJ3.png └── sumon_vN9RQHJ.png ├── nonProfitOrg ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── static ├── Seelife Charity-doc │ ├── .DS_Store │ ├── _DS_Store │ ├── css │ │ ├── _DS_Store │ │ ├── font-awesome.min.css │ │ ├── main.css │ │ └── normalize.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── _DS_Store │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ └── logo.png │ ├── index.html │ ├── js │ │ ├── _DS_Store │ │ ├── custom.js │ │ ├── jquery-1.11.0.min.js │ │ └── jquery.nav.js │ └── syntax-highlighter │ │ ├── _DS_Store │ │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css ├── css │ ├── .DS_Store │ ├── bootstrap.css │ ├── font-awesome.min.css │ ├── responsive.css │ ├── style.css │ └── style.css.map ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── img │ ├── .DS_Store │ ├── about-img.jpg │ ├── account.png │ ├── banner │ │ ├── banner-2.jpg │ │ ├── banner-map.png │ │ ├── banner.jpg │ │ └── home-banner.jpg │ ├── blog │ │ ├── add.jpg │ │ ├── author.png │ │ ├── c1.jpg │ │ ├── c2.jpg │ │ ├── c3.jpg │ │ ├── c4.jpg │ │ ├── c5.jpg │ │ ├── c6.jpg │ │ ├── cat-post │ │ │ ├── cat-post-1.jpg │ │ │ ├── cat-post-2.jpg │ │ │ └── cat-post-3.jpg │ │ ├── causes │ │ │ ├── causes-1.jpg │ │ │ ├── causes-2.jpg │ │ │ └── causes-3.jpg │ │ ├── feature-img1.jpg │ │ ├── main-blog │ │ │ ├── m-blog-1.jpg │ │ │ ├── m-blog-2.jpg │ │ │ ├── m-blog-3.jpg │ │ │ ├── m-blog-4.jpg │ │ │ └── m-blog-5.jpg │ │ ├── next.jpg │ │ ├── popular-post │ │ │ ├── post1.jpg │ │ │ ├── post2.jpg │ │ │ ├── post3.jpg │ │ │ └── post4.jpg │ │ ├── post-img1.jpg │ │ ├── post-img2.jpg │ │ └── prev.jpg │ ├── causes │ │ ├── .DS_Store │ │ ├── c1.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ ├── c5.png │ │ └── c6.png │ ├── donationForm.jpg │ ├── donationForm1.jpg │ ├── dropdownIcon.png │ ├── elements │ │ ├── _DS_Store │ │ ├── a.jpg │ │ ├── a2.jpg │ │ ├── d.jpg │ │ ├── disabled-check.png │ │ ├── disabled-radio.png │ │ ├── f1.jpg │ │ ├── f2.jpg │ │ ├── f3.jpg │ │ ├── f4.jpg │ │ ├── f5.jpg │ │ ├── f6.jpg │ │ ├── f7.jpg │ │ ├── f8.jpg │ │ ├── g1.jpg │ │ ├── g2.jpg │ │ ├── g3.jpg │ │ ├── g4.jpg │ │ ├── g5.jpg │ │ ├── g6.jpg │ │ ├── g7.jpg │ │ ├── g8.jpg │ │ ├── primary-check.png │ │ ├── primary-radio.png │ │ ├── success-check.png │ │ ├── success-radio.png │ │ ├── user1.png │ │ └── user2.png │ ├── event │ │ ├── .DS_Store │ │ ├── e1.jpg │ │ ├── e2.jpg │ │ ├── e3.jpg │ │ ├── e4.jpg │ │ └── event-details.jpg │ ├── features │ │ ├── .DS_Store │ │ ├── fc1.jpg │ │ ├── fc2.jpg │ │ └── fc3.jpg │ ├── fevicon.png │ ├── gallery │ │ ├── .DS_Store │ │ ├── g1.jpg │ │ ├── g2.jpg │ │ ├── g3.jpg │ │ ├── g4.jpg │ │ ├── g5.jpg │ │ └── g6.jpg │ ├── logo.png │ ├── search.png │ ├── signupLogin.jpg │ ├── story │ │ ├── .DS_Store │ │ ├── s1.jpg │ │ ├── s2.jpg │ │ └── s3.jpg │ ├── subscribe-bg.jpg │ └── voluteer │ │ ├── .DS_Store │ │ ├── v1.jpg │ │ ├── v2.jpg │ │ ├── v3.jpg │ │ └── v4.jpg ├── js │ ├── bootstrap.min.js │ ├── contact.js │ ├── countdown.js │ ├── custom.js │ ├── gmaps.min.js │ ├── jquery-3.2.1.min.js │ ├── jquery.ajaxchimp.min.js │ ├── jquery.form.js │ ├── jquery.validate.min.js │ ├── mail-script.js │ ├── popper.js │ ├── stellar.js │ └── theme.js ├── scss │ ├── _blog.scss │ ├── _breadcrumb.scss │ ├── _contact.scss │ ├── _elements.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _home.scss │ ├── _predefine.scss │ ├── _reset.scss │ ├── _variables.scss │ └── style.scss ├── signUpForm │ ├── css │ │ ├── sourcesanspro-font.css │ │ └── style.css │ ├── fonts │ │ └── Source_Sans_Pro │ │ │ ├── OFL.txt │ │ │ ├── SourceSansPro-Black.ttf │ │ │ ├── SourceSansPro-BlackItalic.ttf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ ├── SourceSansPro-BoldItalic.ttf │ │ │ ├── SourceSansPro-ExtraLight.ttf │ │ │ ├── SourceSansPro-ExtraLightItalic.ttf │ │ │ ├── SourceSansPro-Italic.ttf │ │ │ ├── SourceSansPro-Light.ttf │ │ │ ├── SourceSansPro-LightItalic.ttf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ ├── SourceSansPro-SemiBold.ttf │ │ │ └── SourceSansPro-SemiBoldItalic.ttf │ └── images │ │ └── signupLogin.jpg └── vendors │ ├── animate-css │ ├── animate.css │ └── wow.min.js │ ├── bootstrap-datepicker │ ├── bootstrap-datetimepicker.min.css │ ├── bootstrap-datetimepicker.min.js │ ├── bootstrap-select.css │ └── bootstrap-select.js │ ├── counter-up │ ├── jquery.counterup.js │ └── jquery.waypoints.min.js │ ├── flipclock │ └── timer.js │ ├── isotope │ ├── imagesloaded.pkgd.min.js │ └── isotope-min.js │ ├── jquery-ui │ ├── jquery-ui.css │ └── jquery-ui.js │ ├── lightbox │ ├── simpleLightbox.css │ └── simpleLightbox.min.js │ ├── linericon │ ├── fonts │ │ ├── Linearicons-Free.eot │ │ ├── Linearicons-Free.svg │ │ ├── Linearicons-Free.ttf │ │ ├── Linearicons-Free.woff │ │ └── Linearicons-Free.woff2 │ └── style.css │ ├── nice-select │ ├── css │ │ ├── nice-select.css │ │ └── style.css │ └── js │ │ ├── jquery.nice-select.js │ │ └── jquery.nice-select.min.js │ └── owl-carousel │ ├── assets │ ├── ajax-loader.gif │ ├── animated.css │ └── owl.carousel.css │ ├── owl.carousel.min.css │ └── owl.carousel.min.js └── templates ├── about.html ├── activities.html ├── base.html ├── changePassword.html ├── contact.html ├── donate.html ├── donate2.html ├── donate3.html ├── donate4.html ├── donationForm.html ├── donationForm2.html ├── donationForm3.html ├── donationForm4.html ├── index.html ├── information.html ├── invoice.html ├── login.html ├── newDonorRegistration.html ├── newDonorRegistration2.html ├── newDonorRegistration3.html ├── newDonorRegistration4.html ├── objectives.html ├── profile.html ├── receiverBloodForm.html ├── register.html ├── registration ├── login.html ├── password_reset_complete.html ├── password_reset_confirm.html ├── password_reset_done.html ├── password_reset_email.html ├── password_reset_form.html └── password_reset_subject.txt ├── search.html ├── successful.html ├── updateProfile.html ├── updateProfilePic.html └── volenteerForm.html /assets/Seelife Charity-doc/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/_DS_Store -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/css/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/css/_DS_Store -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/fonts/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/fonts/_DS_Store -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/img/logo.png -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/js/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/js/_DS_Store -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/js/custom.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | "use strict"; 3 | 4 | $('#nav').singlePageNav(); 5 | 6 | 7 | }); -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/syntax-highlighter/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/Seelife Charity-doc/syntax-highlighter/_DS_Store -------------------------------------------------------------------------------- /assets/Seelife Charity-doc/syntax-highlighter/scripts/shBrushPlain.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | }; 25 | 26 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 27 | Brush.aliases = ['text', 'plain']; 28 | 29 | SyntaxHighlighter.brushes.Plain = Brush; 30 | 31 | // CommonJS 32 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 33 | })(); 34 | -------------------------------------------------------------------------------- /assets/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | WOFF files extracted using https://github.com/majodev/google-webfonts-helper 3 | Weights used in this project: Light (300), Regular (400), Bold (700) 4 | -------------------------------------------------------------------------------- /assets/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /assets/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /assets/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /assets/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - https://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /assets/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/admin/js/cancel.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $(function() { 4 | $('.cancel-link').on('click', function(e) { 5 | e.preventDefault(); 6 | if (window.location.search.indexOf('&_popup=1') === -1) { 7 | window.history.back(); // Go back if not a popup. 8 | } else { 9 | window.close(); // Otherwise, close the popup. 10 | } 11 | }); 12 | }); 13 | })(django.jQuery); 14 | -------------------------------------------------------------------------------- /assets/admin/js/change_form.js: -------------------------------------------------------------------------------- 1 | /*global showAddAnotherPopup, showRelatedObjectLookupPopup showRelatedObjectPopup updateRelatedObjectLinks*/ 2 | 3 | (function($) { 4 | 'use strict'; 5 | $(document).ready(function() { 6 | var modelName = $('#django-admin-form-add-constants').data('modelName'); 7 | $('body').on('click', '.add-another', function(e) { 8 | e.preventDefault(); 9 | var event = $.Event('django:add-another-related'); 10 | $(this).trigger(event); 11 | if (!event.isDefaultPrevented()) { 12 | showAddAnotherPopup(this); 13 | } 14 | }); 15 | 16 | if (modelName) { 17 | $('form#' + modelName + '_form :input:visible:enabled:first').focus(); 18 | } 19 | }); 20 | })(django.jQuery); 21 | -------------------------------------------------------------------------------- /assets/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global django:true, jQuery:false*/ 2 | /* Puts the included jQuery into our own namespace using noConflict and passing 3 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 4 | * namespace (i.e. this preserves pre-existing values for both window.$ and 5 | * window.jQuery). 6 | */ 7 | var django = django || {}; 8 | django.jQuery = jQuery.noConflict(true); 9 | -------------------------------------------------------------------------------- /assets/admin/js/popup_response.js: -------------------------------------------------------------------------------- 1 | /*global opener */ 2 | (function() { 3 | 'use strict'; 4 | var initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse); 5 | switch(initData.action) { 6 | case 'change': 7 | opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value); 8 | break; 9 | case 'delete': 10 | opener.dismissDeleteRelatedObjectPopup(window, initData.value); 11 | break; 12 | default: 13 | opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj); 14 | break; 15 | } 16 | })(); 17 | -------------------------------------------------------------------------------- /assets/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | (function(b){b.fn.prepopulate=function(d,f,g){return this.each(function(){var a=b(this),h=function(){if(!a.data("_changed")){var e=[];b.each(d,function(a,c){c=b(c);01&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"},removeAllItems:function(){return"Премахнете всички елементи"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/bn.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bn",[],function(){return{errorLoading:function(){return"ফলাফলগুলি লোড করা যায়নি।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="অনুগ্রহ করে "+t+" টি অক্ষর মুছে দিন।";return t!=1&&(n="অনুগ্রহ করে "+t+" টি অক্ষর মুছে দিন।"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n=t+" টি অক্ষর অথবা অধিক অক্ষর লিখুন।";return n},loadingMore:function(){return"আরো ফলাফল লোড হচ্ছে ..."},maximumSelected:function(e){var t=e.maximum+" টি আইটেম নির্বাচন করতে পারবেন।";return e.maximum!=1&&(t=e.maximum+" টি আইটেম নির্বাচন করতে পারবেন।"),t},noResults:function(){return"কোন ফলাফল পাওয়া যায়নি।"},searching:function(){return"অনুসন্ধান করা হচ্ছে ..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"},removeAllItems:function(){return"Treu tots els elements"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Angiv venligst "+t+" tegn mindre"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Angiv venligst "+t+" tegn mere"},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"},removeAllItems:function(){return"Fjern alle elementer"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"},removeAllItems:function(){return"Entferne alle Gegenstände"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"},removeAllItems:function(){return"Remove all items"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"},removeAllItems:function(){return"Eemalda kõik esemed"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"},removeAllItems:function(){return"Kendu elementu guztiak"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."},removeAllItems:function(){return"همه موارد را حذف کنید"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{errorLoading:function(){return"Tuloksia ei saatu ladattua."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){return"Haetaan…"},removeAllItems:function(){return"Poista kaikki kohteet"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Supprimez "+t+" caractère"+(t>1?"s":"")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Saisissez au moins "+t+" caractère"+(t>1?"s":"")},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){return"Vous pouvez seulement sélectionner "+e.maximum+" élément"+(e.maximum>1?"s":"")},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"},removeAllItems:function(){return"Supprimer tous les articles"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{errorLoading:function(){return"Non foi posíbel cargar os resultados."},inputTooLong:function(e){var t=e.input.length-e.maximum;return t===1?"Elimine un carácter":"Elimine "+t+" caracteres"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t===1?"Engada un carácter":"Engada "+t+" caracteres"},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){return e.maximum===1?"Só pode seleccionar un elemento":"Só pode seleccionar "+e.maximum+" elementos"},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"},removeAllItems:function(){return"Elimina todos os elementos"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"},removeAllItems:function(){return"הסר את כל הפריטים"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."},removeAllItems:function(){return"सभी वस्तुओं को हटा दें"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"},removeAllItems:function(){return"Ukloni sve stavke"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"},removeAllItems:function(){return"Távolítson el minden elemet"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/hy.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Խնդրում ենք հեռացնել "+t+" նշան";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Խնդրում ենք մուտքագրել "+t+" կամ ավել նշաններ";return n},loadingMore:function(){return"Բեռնվում են նոր արդյունքներ․․․"},maximumSelected:function(e){var t="Դուք կարող եք ընտրել առավելագույնը "+e.maximum+" կետ";return t},noResults:function(){return"Արդյունքներ չեն գտնվել"},searching:function(){return"Որոնում․․․"},removeAllItems:function(){return"Հեռացնել բոլոր տարրերը"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"},removeAllItems:function(){return"Hapus semua item"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"},removeAllItems:function(){return"Fjarlægðu öll atriði"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"},removeAllItems:function(){return"Rimuovi tutti gli oggetti"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"},removeAllItems:function(){return"すべてのアイテムを削除"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/ka.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ka",[],function(){return{errorLoading:function(){return"მონაცემების ჩატვირთვა შეუძლებელია."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="გთხოვთ აკრიფეთ "+t+" სიმბოლოთი ნაკლები";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="გთხოვთ აკრიფეთ "+t+" სიმბოლო ან მეტი";return n},loadingMore:function(){return"მონაცემების ჩატვირთვა…"},maximumSelected:function(e){var t="თქვენ შეგიძლიათ აირჩიოთ არაუმეტეს "+e.maximum+" ელემენტი";return t},noResults:function(){return"რეზულტატი არ მოიძებნა"},searching:function(){return"ძიება…"},removeAllItems:function(){return"ამოიღე ყველა ელემენტი"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."},removeAllItems:function(){return"លុបធាតុទាំងអស់"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"},removeAllItems:function(){return"모든 항목 삭제"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"},removeAllItems:function(){return"Noņemt visus vienumus"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"},removeAllItems:function(){return"Отстрани ги сите предмети"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"},removeAllItems:function(){return"Keluarkan semua item"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Vennligst skriv inn "+t+" tegn til"},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"},removeAllItems:function(){return"Fjern alle elementer"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/ne.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ne",[],function(){return{errorLoading:function(){return"नतिजाहरु देखाउन सकिएन।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="कृपया "+t+" अक्षर मेटाउनुहोस्।";return t!=1&&(n+="कृपया "+t+" अक्षरहरु मेटाउनुहोस्।"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया बाँकी रहेका "+t+" वा अरु धेरै अक्षरहरु भर्नुहोस्।";return n},loadingMore:function(){return"अरु नतिजाहरु भरिँदैछन् …"},maximumSelected:function(e){var t="तँपाई "+e.maximum+" वस्तु मात्र छान्न पाउँनुहुन्छ।";return e.maximum!=1&&(t="तँपाई "+e.maximum+" वस्तुहरु मात्र छान्न पाउँनुहुन्छ।"),t},noResults:function(){return"कुनै पनि नतिजा भेटिएन।"},searching:function(){return"खोजि हुँदैछ…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/ps.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ps",[],function(){return{errorLoading:function(){return"پايلي نه سي ترلاسه کېدای"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="د مهربانۍ لمخي "+t+" توری ړنګ کړئ";return t!=1&&(n=n.replace("توری","توري")),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لږ تر لږه "+t+" يا ډېر توري وليکئ";return n},loadingMore:function(){return"نوري پايلي ترلاسه کيږي..."},maximumSelected:function(e){var t="تاسو يوازي "+e.maximum+" قلم په نښه کولای سی";return e.maximum!=1&&(t=t.replace("قلم","قلمونه")),t},noResults:function(){return"پايلي و نه موندل سوې"},searching:function(){return"لټول کيږي..."},removeAllItems:function(){return"ټول توکي لرې کړئ"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"},removeAllItems:function(){return"Remover todos os itens"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"caractere",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"},removeAllItems:function(){return"Remover todos os itens"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/sl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sl",[],function(){return{errorLoading:function(){return"Zadetkov iskanja ni bilo mogoče naložiti."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Prosim zbrišite "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Prosim vpišite še "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},loadingMore:function(){return"Nalagam več zadetkov…"},maximumSelected:function(e){var t="Označite lahko največ "+e.maximum+" predmet";return e.maximum==2?t+="a":e.maximum!=1&&(t+="e"),t},noResults:function(){return"Ni zadetkov."},searching:function(){return"Iščem…"},removeAllItems:function(){return"Odstranite vse elemente"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/sq.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sq",[],function(){return{errorLoading:function(){return"Rezultatet nuk mund të ngarkoheshin."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Të lutem fshi "+t+" karakter";return t!=1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Të lutem shkruaj "+t+" ose më shumë karaktere";return n},loadingMore:function(){return"Duke ngarkuar më shumë rezultate…"},maximumSelected:function(e){var t="Mund të zgjedhësh vetëm "+e.maximum+" element";return e.maximum!=1&&(t+="e"),t},noResults:function(){return"Nuk u gjet asnjë rezultat"},searching:function(){return"Duke kërkuar…"},removeAllItems:function(){return"Hiq të gjitha sendet"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"},removeAllItems:function(){return"Ta bort alla objekt"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"},removeAllItems:function(){return"ลบรายการทั้งหมด"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tk",[],function(){return{errorLoading:function(){return"Netije ýüklenmedi."},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" harp bozuň.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ýene-de iň az "+t+" harp ýazyň.";return n},loadingMore:function(){return"Köpräk netije görkezilýär…"},maximumSelected:function(e){var t="Diňe "+e.maximum+" sanysyny saýlaň.";return t},noResults:function(){return"Netije tapylmady."},searching:function(){return"Gözlenýär…"},removeAllItems:function(){return"Remove all items"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"},removeAllItems:function(){return"Tüm öğeleri kaldır"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng xóa bớt "+t+" ký tự";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập thêm từ "+t+" ký tự trở lên";return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"},removeAllItems:function(){return"Xóa tất cả các mục"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"},removeAllItems:function(){return"删除所有项目"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.7 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"},removeAllItems:function(){return"刪除所有項目"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/img/about-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/about-img.jpg -------------------------------------------------------------------------------- /assets/img/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/account.png -------------------------------------------------------------------------------- /assets/img/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/banner/banner-2.jpg -------------------------------------------------------------------------------- /assets/img/banner/banner-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/banner/banner-map.png -------------------------------------------------------------------------------- /assets/img/banner/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/banner/banner.jpg -------------------------------------------------------------------------------- /assets/img/banner/home-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/banner/home-banner.jpg -------------------------------------------------------------------------------- /assets/img/blog/add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/add.jpg -------------------------------------------------------------------------------- /assets/img/blog/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/author.png -------------------------------------------------------------------------------- /assets/img/blog/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/c1.jpg -------------------------------------------------------------------------------- /assets/img/blog/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/c2.jpg -------------------------------------------------------------------------------- /assets/img/blog/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/c3.jpg -------------------------------------------------------------------------------- /assets/img/blog/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/c4.jpg -------------------------------------------------------------------------------- /assets/img/blog/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/c5.jpg -------------------------------------------------------------------------------- /assets/img/blog/c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/c6.jpg -------------------------------------------------------------------------------- /assets/img/blog/cat-post/cat-post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/cat-post/cat-post-1.jpg -------------------------------------------------------------------------------- /assets/img/blog/cat-post/cat-post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/cat-post/cat-post-2.jpg -------------------------------------------------------------------------------- /assets/img/blog/cat-post/cat-post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/cat-post/cat-post-3.jpg -------------------------------------------------------------------------------- /assets/img/blog/causes/causes-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/causes/causes-1.jpg -------------------------------------------------------------------------------- /assets/img/blog/causes/causes-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/causes/causes-2.jpg -------------------------------------------------------------------------------- /assets/img/blog/causes/causes-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/causes/causes-3.jpg -------------------------------------------------------------------------------- /assets/img/blog/feature-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/feature-img1.jpg -------------------------------------------------------------------------------- /assets/img/blog/main-blog/m-blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/main-blog/m-blog-1.jpg -------------------------------------------------------------------------------- /assets/img/blog/main-blog/m-blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/main-blog/m-blog-2.jpg -------------------------------------------------------------------------------- /assets/img/blog/main-blog/m-blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/main-blog/m-blog-3.jpg -------------------------------------------------------------------------------- /assets/img/blog/main-blog/m-blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/main-blog/m-blog-4.jpg -------------------------------------------------------------------------------- /assets/img/blog/main-blog/m-blog-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/main-blog/m-blog-5.jpg -------------------------------------------------------------------------------- /assets/img/blog/next.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/next.jpg -------------------------------------------------------------------------------- /assets/img/blog/popular-post/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/popular-post/post1.jpg -------------------------------------------------------------------------------- /assets/img/blog/popular-post/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/popular-post/post2.jpg -------------------------------------------------------------------------------- /assets/img/blog/popular-post/post3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/popular-post/post3.jpg -------------------------------------------------------------------------------- /assets/img/blog/popular-post/post4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/popular-post/post4.jpg -------------------------------------------------------------------------------- /assets/img/blog/post-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/post-img1.jpg -------------------------------------------------------------------------------- /assets/img/blog/post-img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/post-img2.jpg -------------------------------------------------------------------------------- /assets/img/blog/prev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/blog/prev.jpg -------------------------------------------------------------------------------- /assets/img/causes/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/causes/c1.png -------------------------------------------------------------------------------- /assets/img/causes/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/causes/c2.png -------------------------------------------------------------------------------- /assets/img/causes/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/causes/c3.png -------------------------------------------------------------------------------- /assets/img/dropdownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/dropdownIcon.png -------------------------------------------------------------------------------- /assets/img/elements/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/_DS_Store -------------------------------------------------------------------------------- /assets/img/elements/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/a.jpg -------------------------------------------------------------------------------- /assets/img/elements/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/a2.jpg -------------------------------------------------------------------------------- /assets/img/elements/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/d.jpg -------------------------------------------------------------------------------- /assets/img/elements/disabled-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/disabled-check.png -------------------------------------------------------------------------------- /assets/img/elements/disabled-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/disabled-radio.png -------------------------------------------------------------------------------- /assets/img/elements/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f1.jpg -------------------------------------------------------------------------------- /assets/img/elements/f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f2.jpg -------------------------------------------------------------------------------- /assets/img/elements/f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f3.jpg -------------------------------------------------------------------------------- /assets/img/elements/f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f4.jpg -------------------------------------------------------------------------------- /assets/img/elements/f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f5.jpg -------------------------------------------------------------------------------- /assets/img/elements/f6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f6.jpg -------------------------------------------------------------------------------- /assets/img/elements/f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f7.jpg -------------------------------------------------------------------------------- /assets/img/elements/f8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/f8.jpg -------------------------------------------------------------------------------- /assets/img/elements/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g1.jpg -------------------------------------------------------------------------------- /assets/img/elements/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g2.jpg -------------------------------------------------------------------------------- /assets/img/elements/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g3.jpg -------------------------------------------------------------------------------- /assets/img/elements/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g4.jpg -------------------------------------------------------------------------------- /assets/img/elements/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g5.jpg -------------------------------------------------------------------------------- /assets/img/elements/g6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g6.jpg -------------------------------------------------------------------------------- /assets/img/elements/g7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g7.jpg -------------------------------------------------------------------------------- /assets/img/elements/g8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/g8.jpg -------------------------------------------------------------------------------- /assets/img/elements/primary-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/primary-check.png -------------------------------------------------------------------------------- /assets/img/elements/primary-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/primary-radio.png -------------------------------------------------------------------------------- /assets/img/elements/success-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/success-check.png -------------------------------------------------------------------------------- /assets/img/elements/success-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/success-radio.png -------------------------------------------------------------------------------- /assets/img/elements/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/user1.png -------------------------------------------------------------------------------- /assets/img/elements/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/elements/user2.png -------------------------------------------------------------------------------- /assets/img/event/e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/event/e1.jpg -------------------------------------------------------------------------------- /assets/img/event/e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/event/e2.jpg -------------------------------------------------------------------------------- /assets/img/event/e3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/event/e3.jpg -------------------------------------------------------------------------------- /assets/img/event/e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/event/e4.jpg -------------------------------------------------------------------------------- /assets/img/event/event-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/event/event-details.jpg -------------------------------------------------------------------------------- /assets/img/features/fc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/features/fc1.jpg -------------------------------------------------------------------------------- /assets/img/features/fc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/features/fc2.jpg -------------------------------------------------------------------------------- /assets/img/features/fc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/features/fc3.jpg -------------------------------------------------------------------------------- /assets/img/fevicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/fevicon.png -------------------------------------------------------------------------------- /assets/img/gallery/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/gallery/g1.jpg -------------------------------------------------------------------------------- /assets/img/gallery/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/gallery/g2.jpg -------------------------------------------------------------------------------- /assets/img/gallery/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/gallery/g3.jpg -------------------------------------------------------------------------------- /assets/img/gallery/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/gallery/g4.jpg -------------------------------------------------------------------------------- /assets/img/gallery/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/gallery/g5.jpg -------------------------------------------------------------------------------- /assets/img/gallery/g6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/gallery/g6.jpg -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/search.png -------------------------------------------------------------------------------- /assets/img/signupLogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/signupLogin.jpg -------------------------------------------------------------------------------- /assets/img/story/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/story/s1.jpg -------------------------------------------------------------------------------- /assets/img/story/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/story/s2.jpg -------------------------------------------------------------------------------- /assets/img/story/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/story/s3.jpg -------------------------------------------------------------------------------- /assets/img/subscribe-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/subscribe-bg.jpg -------------------------------------------------------------------------------- /assets/img/voluteer/v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/voluteer/v1.jpg -------------------------------------------------------------------------------- /assets/img/voluteer/v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/voluteer/v2.jpg -------------------------------------------------------------------------------- /assets/img/voluteer/v3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/voluteer/v3.jpg -------------------------------------------------------------------------------- /assets/img/voluteer/v4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/img/voluteer/v4.jpg -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Black.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-LightItalic.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf -------------------------------------------------------------------------------- /assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/signUpForm/images/signupLogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/signUpForm/images/signupLogin.jpg -------------------------------------------------------------------------------- /assets/vendors/linericon/fonts/Linearicons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/vendors/linericon/fonts/Linearicons-Free.eot -------------------------------------------------------------------------------- /assets/vendors/linericon/fonts/Linearicons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/vendors/linericon/fonts/Linearicons-Free.ttf -------------------------------------------------------------------------------- /assets/vendors/linericon/fonts/Linearicons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/vendors/linericon/fonts/Linearicons-Free.woff -------------------------------------------------------------------------------- /assets/vendors/linericon/fonts/Linearicons-Free.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/vendors/linericon/fonts/Linearicons-Free.woff2 -------------------------------------------------------------------------------- /assets/vendors/owl-carousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/assets/vendors/owl-carousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/__init__.py -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /core/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CoreConfig(AppConfig): 5 | name = 'core' 6 | -------------------------------------------------------------------------------- /core/migrations/0002_auto_20200607_1740.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 3.0.2 on 2020-06-07 09:40 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('core', '0001_initial'), 10 | ] 11 | 12 | operations = [ 13 | migrations.AlterField( 14 | model_name='availablebloodgroup', 15 | name='apply_date', 16 | field=models.DateTimeField(blank=True, null=True), 17 | ), 18 | ] 19 | -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/migrations/__init__.py -------------------------------------------------------------------------------- /core/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0002_auto_20200607_1740.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/migrations/__pycache__/0002_auto_20200607_1740.cpython-37.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/core/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- 1 | from io import BytesIO 2 | from django.http import HttpResponse 3 | from django.template.loader import get_template 4 | 5 | from xhtml2pdf import pisa 6 | 7 | def render_to_pdf(template_src, context_dict={}): 8 | template = get_template(template_src) 9 | html = template.render(context_dict) 10 | result = BytesIO() 11 | pdf = pisa.pisaDocument(BytesIO(html.encode("ISO-8859-1")), result) 12 | if not pdf.err: 13 | return HttpResponse(result.getvalue(), content_type='application/pdf') 14 | return None 15 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'nonProfitOrg.settings') 9 | try: 10 | from django.core.management import execute_from_command_line 11 | except ImportError as exc: 12 | raise ImportError( 13 | "Couldn't import Django. Are you sure it's installed and " 14 | "available on your PYTHONPATH environment variable? Did you " 15 | "forget to activate a virtual environment?" 16 | ) from exc 17 | execute_from_command_line(sys.argv) 18 | 19 | 20 | if __name__ == '__main__': 21 | main() 22 | -------------------------------------------------------------------------------- /media/alomgir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/alomgir.png -------------------------------------------------------------------------------- /media/alomgir_JAgbeUf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/alomgir_JAgbeUf.png -------------------------------------------------------------------------------- /media/alomgir_g08qB5w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/alomgir_g08qB5w.png -------------------------------------------------------------------------------- /media/bokkor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/bokkor.png -------------------------------------------------------------------------------- /media/bokkor_fjE0kXw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/bokkor_fjE0kXw.png -------------------------------------------------------------------------------- /media/faruque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/faruque.png -------------------------------------------------------------------------------- /media/halim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/halim.png -------------------------------------------------------------------------------- /media/halim_ki2X5Rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/halim_ki2X5Rl.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/03/14/halim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/03/14/halim.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/03/14/jesan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/03/14/jesan.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/03/14/mhafuz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/03/14/mhafuz.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/03/14/musab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/03/14/musab.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/03/14/mustafiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/03/14/mustafiz.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/03/14/seko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/03/14/seko.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/06/08/halim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/06/08/halim.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/06/08/jesan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/06/08/jesan.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/06/08/mhafuz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/06/08/mhafuz.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/06/08/musab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/06/08/musab.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/06/08/mustafiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/06/08/mustafiz.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/06/08/seko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/06/08/seko.png -------------------------------------------------------------------------------- /media/homePageGallary/2020/06/08/tuhin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageGallary/2020/06/08/tuhin.png -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/14/183585.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/14/183585.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/14/bloodCampaign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/14/bloodCampaign.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/14/bloodCampaign_0Z9qBzJ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/14/bloodCampaign_0Z9qBzJ.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/14/foodaid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/14/foodaid.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/blood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/blood.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/children.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/children.jfif -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/clothing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/clothing.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/culture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/culture.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/differentlyAbled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/differentlyAbled.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/environment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/environment.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/finance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/finance.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/food.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/health.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/health.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/03/16/refugees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/03/16/refugees.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/04/12/refugees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/04/12/refugees.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/blood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/blood.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/children.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/children.jfif -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/clothing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/clothing.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/culture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/culture.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/differentlyAbled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/differentlyAbled.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/environment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/environment.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/finance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/finance.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/food.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/health.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/health.jpg -------------------------------------------------------------------------------- /media/homePageNonProfitCharitiesPic/2020/06/08/refugees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageNonProfitCharitiesPic/2020/06/08/refugees.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/03/16/chorona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/03/16/chorona.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/03/16/chorona_nk6YsiX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/03/16/chorona_nk6YsiX.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/03/16/foodAid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/03/16/foodAid.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/03/16/nha-covid-campaign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/03/16/nha-covid-campaign.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/03/16/refugee-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/03/16/refugee-image.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/06/08/chorona_nk6YsiX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/06/08/chorona_nk6YsiX.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/06/08/foodAid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/06/08/foodAid.jpg -------------------------------------------------------------------------------- /media/homePageOurLatestStory/2020/06/08/refugee-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageOurLatestStory/2020/06/08/refugee-image.jpg -------------------------------------------------------------------------------- /media/homePageUpcomingEvents/2020/03/16/education.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageUpcomingEvents/2020/03/16/education.jpg -------------------------------------------------------------------------------- /media/homePageUpcomingEvents/2020/03/16/feeding_program_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageUpcomingEvents/2020/03/16/feeding_program_png.png -------------------------------------------------------------------------------- /media/homePageUpcomingEvents/2020/03/16/whatson_guide_2018_OrphanCloth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageUpcomingEvents/2020/03/16/whatson_guide_2018_OrphanCloth.jpg -------------------------------------------------------------------------------- /media/homePageUpcomingEvents/2020/06/08/education.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageUpcomingEvents/2020/06/08/education.jpg -------------------------------------------------------------------------------- /media/homePageUpcomingEvents/2020/06/08/feeding_program_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageUpcomingEvents/2020/06/08/feeding_program_png.png -------------------------------------------------------------------------------- /media/homePageUpcomingEvents/2020/06/08/whatson_guide_2018_OrphanCloth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/homePageUpcomingEvents/2020/06/08/whatson_guide_2018_OrphanCloth.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g1.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g1_AoAoDIb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g1_AoAoDIb.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g1_q7fF4yR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g1_q7fF4yR.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g2.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g2_pkMPIpD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g2_pkMPIpD.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g3.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g4.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g5.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g6.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g7.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/03/19/g8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/03/19/g8.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/1.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/2.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/3.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/4.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/5.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/6.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/7.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/8.jpg -------------------------------------------------------------------------------- /media/imageGallary/2020/06/08/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imageGallary/2020/06/08/9.jpg -------------------------------------------------------------------------------- /media/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/images.jpg -------------------------------------------------------------------------------- /media/imdadul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/imdadul.png -------------------------------------------------------------------------------- /media/information/2020/03/20/Food-Aid-Foundation-1024x681.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/20/Food-Aid-Foundation-1024x681.jpg -------------------------------------------------------------------------------- /media/information/2020/03/20/association-rohingya-society-of-malaysia-rsm-ipoh-branch-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/20/association-rohingya-society-of-malaysia-rsm-ipoh-branch-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/03/20/cakne-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/20/cakne-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/03/20/hhp_2-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/20/hhp_2-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/03/20/mhf_1-768x432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/20/mhf_1-768x432.jpg -------------------------------------------------------------------------------- /media/information/2020/03/20/waja-home-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/20/waja-home-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/1148814_764399076922543_869083742_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/1148814_764399076922543_869083742_n.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/IMG_1883-e1506767907907-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/IMG_1883-e1506767907907-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/Rahoma-fakir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/Rahoma-fakir.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/ghca_1-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/ghca_1-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/gt-community-care-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/gt-community-care-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/pekaka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/pekaka.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/persatuan-kebajikan-keluarga-harapan-kluang-johor-768x576_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/persatuan-kebajikan-keluarga-harapan-kluang-johor-768x576_1.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/persatuan-rumah-kebajikan-rita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/persatuan-rumah-kebajikan-rita.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/pertubuhan-pembangunan-kendiri-wanita-dan-gadis-women-girls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/pertubuhan-pembangunan-kendiri-wanita-dan-gadis-women-girls.png -------------------------------------------------------------------------------- /media/information/2020/03/24/rainbow-of-love-768x571_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/rainbow-of-love-768x571_1.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/rumah-amal-suci-rohani-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/rumah-amal-suci-rohani-1.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/self-empowerment-educational-development-society-seeds-768x373.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/self-empowerment-educational-development-society-seeds-768x373.jpg -------------------------------------------------------------------------------- /media/information/2020/03/24/yakin-malaysia-other-communities-768x574.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/03/24/yakin-malaysia-other-communities-768x574.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/1148814_764399076922543_869083742_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/1148814_764399076922543_869083742_n.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/Food-Aid-Foundation-1024x681.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/Food-Aid-Foundation-1024x681.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/IMG_1883-e1506767907907-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/IMG_1883-e1506767907907-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/Rahoma-fakir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/Rahoma-fakir.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/association-rohingya-society-of-malaysia-rsm-ipoh-branch-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/association-rohingya-society-of-malaysia-rsm-ipoh-branch-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/cakne-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/cakne-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/cakne-768x576_JG6XpaN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/cakne-768x576_JG6XpaN.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/ghca_1-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/ghca_1-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/gt-community-care-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/gt-community-care-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/mhf_1-768x432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/mhf_1-768x432.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/pekaka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/pekaka.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/persatuan-kebajikan-keluarga-harapan-kluang-johor-768x576_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/persatuan-kebajikan-keluarga-harapan-kluang-johor-768x576_1.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/persatuan-rumah-kebajikan-rita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/persatuan-rumah-kebajikan-rita.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/pertubuhan-pembangunan-kendiri-wanita-dan-gadis-women-girls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/pertubuhan-pembangunan-kendiri-wanita-dan-gadis-women-girls.png -------------------------------------------------------------------------------- /media/information/2020/06/08/rainbow-of-love-768x571_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/rainbow-of-love-768x571_1.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/rumah-amal-suci-rohani-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/rumah-amal-suci-rohani-1.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/self-empowerment-educational-development-society-seeds-768x373.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/self-empowerment-educational-development-society-seeds-768x373.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/waja-home-768x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/waja-home-768x576.jpg -------------------------------------------------------------------------------- /media/information/2020/06/08/yakin-malaysia-other-communities-768x574.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/information/2020/06/08/yakin-malaysia-other-communities-768x574.jpg -------------------------------------------------------------------------------- /media/jesan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/jesan.png -------------------------------------------------------------------------------- /media/jesan_YVpmUtP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/jesan_YVpmUtP.png -------------------------------------------------------------------------------- /media/kawsar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/kawsar.png -------------------------------------------------------------------------------- /media/kawsar_nYTrzF3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/kawsar_nYTrzF3.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/03/19/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/03/19/c1.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/03/19/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/03/19/c2.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/03/19/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/03/19/c3.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/03/19/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/03/19/c4.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/03/19/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/03/19/c5.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/03/19/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/03/19/c6.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/06/08/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/06/08/c1.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/06/08/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/06/08/c2.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/06/08/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/06/08/c3.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/06/08/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/06/08/c4.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/06/08/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/06/08/c5.png -------------------------------------------------------------------------------- /media/majorObjectives/2020/06/08/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/majorObjectives/2020/06/08/c6.png -------------------------------------------------------------------------------- /media/mhafuz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/mhafuz.png -------------------------------------------------------------------------------- /media/mhafuz_LVc2Z6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/mhafuz_LVc2Z6s.png -------------------------------------------------------------------------------- /media/musab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/musab.png -------------------------------------------------------------------------------- /media/musab_b2R8BcD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/musab_b2R8BcD.png -------------------------------------------------------------------------------- /media/mustafiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/mustafiz.png -------------------------------------------------------------------------------- /media/nazrul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/nazrul.png -------------------------------------------------------------------------------- /media/nazrul_P2TXTK3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/nazrul_P2TXTK3.png -------------------------------------------------------------------------------- /media/profilePictures/2020/03/15/nazrul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/profilePictures/2020/03/15/nazrul.png -------------------------------------------------------------------------------- /media/profilePictures/2020/03/15/tuhin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/profilePictures/2020/03/15/tuhin.png -------------------------------------------------------------------------------- /media/profilePictures/2020/06/08/tuhin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/profilePictures/2020/06/08/tuhin.png -------------------------------------------------------------------------------- /media/profilePictures/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/profilePictures/user.png -------------------------------------------------------------------------------- /media/seko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/seko.png -------------------------------------------------------------------------------- /media/seko_AkVOAqA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/seko_AkVOAqA.png -------------------------------------------------------------------------------- /media/shahalam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/shahalam.png -------------------------------------------------------------------------------- /media/sumon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/sumon.png -------------------------------------------------------------------------------- /media/sumon_3vmLihA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/sumon_3vmLihA.png -------------------------------------------------------------------------------- /media/sumon_83lax1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/sumon_83lax1D.png -------------------------------------------------------------------------------- /media/sumon_ShgvjF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/sumon_ShgvjF0.png -------------------------------------------------------------------------------- /media/sumon_oXToiJ3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/sumon_oXToiJ3.png -------------------------------------------------------------------------------- /media/sumon_vN9RQHJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/media/sumon_vN9RQHJ.png -------------------------------------------------------------------------------- /nonProfitOrg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/nonProfitOrg/__init__.py -------------------------------------------------------------------------------- /nonProfitOrg/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/nonProfitOrg/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /nonProfitOrg/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/nonProfitOrg/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /nonProfitOrg/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/nonProfitOrg/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /nonProfitOrg/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/nonProfitOrg/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /nonProfitOrg/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for nonProfitOrg project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'nonProfitOrg.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /nonProfitOrg/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for nonProfitOrg project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'nonProfitOrg.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /static/Seelife Charity-doc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/.DS_Store -------------------------------------------------------------------------------- /static/Seelife Charity-doc/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/_DS_Store -------------------------------------------------------------------------------- /static/Seelife Charity-doc/css/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/css/_DS_Store -------------------------------------------------------------------------------- /static/Seelife Charity-doc/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/Seelife Charity-doc/fonts/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/fonts/_DS_Store -------------------------------------------------------------------------------- /static/Seelife Charity-doc/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/Seelife Charity-doc/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/Seelife Charity-doc/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/Seelife Charity-doc/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/img/logo.png -------------------------------------------------------------------------------- /static/Seelife Charity-doc/js/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/js/_DS_Store -------------------------------------------------------------------------------- /static/Seelife Charity-doc/js/custom.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | "use strict"; 3 | 4 | $('#nav').singlePageNav(); 5 | 6 | 7 | }); -------------------------------------------------------------------------------- /static/Seelife Charity-doc/syntax-highlighter/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/Seelife Charity-doc/syntax-highlighter/_DS_Store -------------------------------------------------------------------------------- /static/Seelife Charity-doc/syntax-highlighter/scripts/shBrushPlain.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | }; 25 | 26 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 27 | Brush.aliases = ['text', 'plain']; 28 | 29 | SyntaxHighlighter.brushes.Plain = Brush; 30 | 31 | // CommonJS 32 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 33 | })(); 34 | -------------------------------------------------------------------------------- /static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/css/.DS_Store -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/.DS_Store -------------------------------------------------------------------------------- /static/img/about-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/about-img.jpg -------------------------------------------------------------------------------- /static/img/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/account.png -------------------------------------------------------------------------------- /static/img/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/banner/banner-2.jpg -------------------------------------------------------------------------------- /static/img/banner/banner-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/banner/banner-map.png -------------------------------------------------------------------------------- /static/img/banner/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/banner/banner.jpg -------------------------------------------------------------------------------- /static/img/banner/home-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/banner/home-banner.jpg -------------------------------------------------------------------------------- /static/img/blog/add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/add.jpg -------------------------------------------------------------------------------- /static/img/blog/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/author.png -------------------------------------------------------------------------------- /static/img/blog/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/c1.jpg -------------------------------------------------------------------------------- /static/img/blog/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/c2.jpg -------------------------------------------------------------------------------- /static/img/blog/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/c3.jpg -------------------------------------------------------------------------------- /static/img/blog/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/c4.jpg -------------------------------------------------------------------------------- /static/img/blog/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/c5.jpg -------------------------------------------------------------------------------- /static/img/blog/c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/c6.jpg -------------------------------------------------------------------------------- /static/img/blog/cat-post/cat-post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/cat-post/cat-post-1.jpg -------------------------------------------------------------------------------- /static/img/blog/cat-post/cat-post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/cat-post/cat-post-2.jpg -------------------------------------------------------------------------------- /static/img/blog/cat-post/cat-post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/cat-post/cat-post-3.jpg -------------------------------------------------------------------------------- /static/img/blog/causes/causes-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/causes/causes-1.jpg -------------------------------------------------------------------------------- /static/img/blog/causes/causes-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/causes/causes-2.jpg -------------------------------------------------------------------------------- /static/img/blog/causes/causes-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/causes/causes-3.jpg -------------------------------------------------------------------------------- /static/img/blog/feature-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/feature-img1.jpg -------------------------------------------------------------------------------- /static/img/blog/main-blog/m-blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/main-blog/m-blog-1.jpg -------------------------------------------------------------------------------- /static/img/blog/main-blog/m-blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/main-blog/m-blog-2.jpg -------------------------------------------------------------------------------- /static/img/blog/main-blog/m-blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/main-blog/m-blog-3.jpg -------------------------------------------------------------------------------- /static/img/blog/main-blog/m-blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/main-blog/m-blog-4.jpg -------------------------------------------------------------------------------- /static/img/blog/main-blog/m-blog-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/main-blog/m-blog-5.jpg -------------------------------------------------------------------------------- /static/img/blog/next.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/next.jpg -------------------------------------------------------------------------------- /static/img/blog/popular-post/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/popular-post/post1.jpg -------------------------------------------------------------------------------- /static/img/blog/popular-post/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/popular-post/post2.jpg -------------------------------------------------------------------------------- /static/img/blog/popular-post/post3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/popular-post/post3.jpg -------------------------------------------------------------------------------- /static/img/blog/popular-post/post4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/popular-post/post4.jpg -------------------------------------------------------------------------------- /static/img/blog/post-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/post-img1.jpg -------------------------------------------------------------------------------- /static/img/blog/post-img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/post-img2.jpg -------------------------------------------------------------------------------- /static/img/blog/prev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/blog/prev.jpg -------------------------------------------------------------------------------- /static/img/causes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/causes/.DS_Store -------------------------------------------------------------------------------- /static/img/causes/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/causes/c1.png -------------------------------------------------------------------------------- /static/img/causes/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/causes/c2.png -------------------------------------------------------------------------------- /static/img/causes/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/causes/c3.png -------------------------------------------------------------------------------- /static/img/causes/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/causes/c4.png -------------------------------------------------------------------------------- /static/img/causes/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/causes/c5.png -------------------------------------------------------------------------------- /static/img/causes/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/causes/c6.png -------------------------------------------------------------------------------- /static/img/donationForm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/donationForm.jpg -------------------------------------------------------------------------------- /static/img/donationForm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/donationForm1.jpg -------------------------------------------------------------------------------- /static/img/dropdownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/dropdownIcon.png -------------------------------------------------------------------------------- /static/img/elements/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/_DS_Store -------------------------------------------------------------------------------- /static/img/elements/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/a.jpg -------------------------------------------------------------------------------- /static/img/elements/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/a2.jpg -------------------------------------------------------------------------------- /static/img/elements/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/d.jpg -------------------------------------------------------------------------------- /static/img/elements/disabled-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/disabled-check.png -------------------------------------------------------------------------------- /static/img/elements/disabled-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/disabled-radio.png -------------------------------------------------------------------------------- /static/img/elements/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f1.jpg -------------------------------------------------------------------------------- /static/img/elements/f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f2.jpg -------------------------------------------------------------------------------- /static/img/elements/f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f3.jpg -------------------------------------------------------------------------------- /static/img/elements/f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f4.jpg -------------------------------------------------------------------------------- /static/img/elements/f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f5.jpg -------------------------------------------------------------------------------- /static/img/elements/f6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f6.jpg -------------------------------------------------------------------------------- /static/img/elements/f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f7.jpg -------------------------------------------------------------------------------- /static/img/elements/f8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/f8.jpg -------------------------------------------------------------------------------- /static/img/elements/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g1.jpg -------------------------------------------------------------------------------- /static/img/elements/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g2.jpg -------------------------------------------------------------------------------- /static/img/elements/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g3.jpg -------------------------------------------------------------------------------- /static/img/elements/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g4.jpg -------------------------------------------------------------------------------- /static/img/elements/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g5.jpg -------------------------------------------------------------------------------- /static/img/elements/g6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g6.jpg -------------------------------------------------------------------------------- /static/img/elements/g7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g7.jpg -------------------------------------------------------------------------------- /static/img/elements/g8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/g8.jpg -------------------------------------------------------------------------------- /static/img/elements/primary-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/primary-check.png -------------------------------------------------------------------------------- /static/img/elements/primary-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/primary-radio.png -------------------------------------------------------------------------------- /static/img/elements/success-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/success-check.png -------------------------------------------------------------------------------- /static/img/elements/success-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/success-radio.png -------------------------------------------------------------------------------- /static/img/elements/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/user1.png -------------------------------------------------------------------------------- /static/img/elements/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/elements/user2.png -------------------------------------------------------------------------------- /static/img/event/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/event/.DS_Store -------------------------------------------------------------------------------- /static/img/event/e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/event/e1.jpg -------------------------------------------------------------------------------- /static/img/event/e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/event/e2.jpg -------------------------------------------------------------------------------- /static/img/event/e3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/event/e3.jpg -------------------------------------------------------------------------------- /static/img/event/e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/event/e4.jpg -------------------------------------------------------------------------------- /static/img/event/event-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/event/event-details.jpg -------------------------------------------------------------------------------- /static/img/features/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/features/.DS_Store -------------------------------------------------------------------------------- /static/img/features/fc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/features/fc1.jpg -------------------------------------------------------------------------------- /static/img/features/fc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/features/fc2.jpg -------------------------------------------------------------------------------- /static/img/features/fc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/features/fc3.jpg -------------------------------------------------------------------------------- /static/img/fevicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/fevicon.png -------------------------------------------------------------------------------- /static/img/gallery/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/gallery/.DS_Store -------------------------------------------------------------------------------- /static/img/gallery/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/gallery/g1.jpg -------------------------------------------------------------------------------- /static/img/gallery/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/gallery/g2.jpg -------------------------------------------------------------------------------- /static/img/gallery/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/gallery/g3.jpg -------------------------------------------------------------------------------- /static/img/gallery/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/gallery/g4.jpg -------------------------------------------------------------------------------- /static/img/gallery/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/gallery/g5.jpg -------------------------------------------------------------------------------- /static/img/gallery/g6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/gallery/g6.jpg -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/logo.png -------------------------------------------------------------------------------- /static/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/search.png -------------------------------------------------------------------------------- /static/img/signupLogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/signupLogin.jpg -------------------------------------------------------------------------------- /static/img/story/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/story/.DS_Store -------------------------------------------------------------------------------- /static/img/story/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/story/s1.jpg -------------------------------------------------------------------------------- /static/img/story/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/story/s2.jpg -------------------------------------------------------------------------------- /static/img/story/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/story/s3.jpg -------------------------------------------------------------------------------- /static/img/subscribe-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/subscribe-bg.jpg -------------------------------------------------------------------------------- /static/img/voluteer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/voluteer/.DS_Store -------------------------------------------------------------------------------- /static/img/voluteer/v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/voluteer/v1.jpg -------------------------------------------------------------------------------- /static/img/voluteer/v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/voluteer/v2.jpg -------------------------------------------------------------------------------- /static/img/voluteer/v3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/voluteer/v3.jpg -------------------------------------------------------------------------------- /static/img/voluteer/v4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/img/voluteer/v4.jpg -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Black.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BlackItalic.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-BoldItalic.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLight.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-LightItalic.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf -------------------------------------------------------------------------------- /static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/fonts/Source_Sans_Pro/SourceSansPro-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/signUpForm/images/signupLogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/signUpForm/images/signupLogin.jpg -------------------------------------------------------------------------------- /static/vendors/linericon/fonts/Linearicons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/vendors/linericon/fonts/Linearicons-Free.eot -------------------------------------------------------------------------------- /static/vendors/linericon/fonts/Linearicons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/vendors/linericon/fonts/Linearicons-Free.ttf -------------------------------------------------------------------------------- /static/vendors/linericon/fonts/Linearicons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/vendors/linericon/fonts/Linearicons-Free.woff -------------------------------------------------------------------------------- /static/vendors/linericon/fonts/Linearicons-Free.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/vendors/linericon/fonts/Linearicons-Free.woff2 -------------------------------------------------------------------------------- /static/vendors/owl-carousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinhussain1995/Django-Web-Application-Social-Organization-Management-System-/c1f8658f717a499bb4007ed461869bec68fe4e3b/static/vendors/owl-carousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- 1 | 2 | {% extends 'base.html' %} 3 | 4 | {% load crispy_forms_tags %} 5 | 6 | {% block content %} 7 | 8 |
9 |
10 |
11 |
12 |

Password Changed with Success


13 | 14 |

Now You May Log In

15 | 16 | Log In 17 | 18 |
19 |
20 |
21 |
22 | 23 | {% for message in messages %} 24 |

{{message}}

25 | {% endfor %} 26 | {% endblock %} 27 | -------------------------------------------------------------------------------- /templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% extends 'base.html' %} 4 | 5 | {% load crispy_forms_tags %} 6 | 7 | {% block content %} 8 | 9 |
10 |
11 |
12 |
13 |

Reset your Password


14 |

A confirmation mail has send to your desired mail

15 |

Go to your Email and update your password


16 | 17 |

Go Back to Home Page Click

18 |
19 |
20 |
21 |
22 | 23 | {% for message in messages %} 24 |

{{message}}

25 | {% endfor %} 26 | {% endblock %} 27 | -------------------------------------------------------------------------------- /templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- 1 | Someone asked for password reset for email {{ email }}. Follow the below: 2 | 3 | {{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} 4 | -------------------------------------------------------------------------------- /templates/registration/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | Reset your Password confirmation 2 | --------------------------------------------------------------------------------