Repository: cookiecutter/cookiecutter-django Branch: main Commit: 1ef10a7c8b0b Files: 245 Total size: 882.3 KB Directory structure: gitextract_c7d8xipx/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTORS-template.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ ├── feature.md │ │ ├── paid-support.md │ │ └── question.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── changelog-template.md │ ├── contributors.json │ ├── dependabot.yml │ └── workflows/ │ ├── align-versions.yml │ ├── ci.yml │ ├── dependabot-uv-lock.yml │ ├── django-issue-checker.yml │ ├── issue-manager.yml │ ├── pre-commit-autoupdate.yml │ ├── update-changelog.yml │ └── update-contributors.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pyup.yml ├── .readthedocs.yaml ├── AGENTS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── cookiecutter.json ├── docs/ │ ├── 1-getting-started/ │ │ ├── project-generation-options.rst │ │ └── settings.rst │ ├── 2-local-development/ │ │ ├── developing-locally-docker.rst │ │ ├── developing-locally.rst │ │ └── generate-project-block.rst │ ├── 3-deployment/ │ │ ├── deployment-on-heroku.rst │ │ ├── deployment-on-pythonanywhere.rst │ │ └── deployment-with-docker.rst │ ├── 4-guides/ │ │ ├── docker-postgres-backups.rst │ │ ├── document.rst │ │ ├── linters.rst │ │ ├── testing.rst │ │ └── websocket.rst │ ├── 5-help/ │ │ ├── faq.rst │ │ └── troubleshooting.rst │ ├── 6-about/ │ │ ├── contributing.md │ │ ├── generative-ai.md │ │ └── maintainer-guide.md │ ├── Makefile │ ├── __init__.py │ ├── _static/ │ │ └── .gitkeep │ ├── conf.py │ ├── includes/ │ │ └── mailgun.rst │ ├── index.rst │ └── make.bat ├── hooks/ │ ├── __init__.py │ ├── post_gen_project.py │ └── pre_gen_project.py ├── pyproject.toml ├── scripts/ │ ├── __init__.py │ ├── create_django_issue.py │ ├── node_version.py │ ├── ruff_version.py │ ├── update_changelog.py │ └── update_contributors.py ├── tests/ │ ├── __init__.py │ ├── test_bare.sh │ ├── test_cookiecutter_generation.py │ ├── test_docker.sh │ └── test_hooks.py ├── tox.ini └── {{cookiecutter.project_slug}}/ ├── .devcontainer/ │ ├── bash_history │ ├── bashrc.override.sh │ └── devcontainer.json ├── .dockerignore ├── .drone.yml ├── .editorconfig ├── .envs/ │ ├── .local/ │ │ ├── .django │ │ └── .postgres │ └── .production/ │ ├── .django │ └── .postgres ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .travis.yml ├── CONTRIBUTORS.txt ├── COPYING ├── LICENSE ├── Procfile ├── README.md ├── bin/ │ └── post_compile ├── compose/ │ ├── local/ │ │ ├── django/ │ │ │ ├── Dockerfile │ │ │ ├── celery/ │ │ │ │ ├── beat/ │ │ │ │ │ └── start │ │ │ │ ├── flower/ │ │ │ │ │ └── start │ │ │ │ └── worker/ │ │ │ │ └── start │ │ │ └── start │ │ ├── docs/ │ │ │ ├── Dockerfile │ │ │ └── start │ │ ├── node/ │ │ │ └── Dockerfile │ │ └── uv/ │ │ └── Dockerfile │ └── production/ │ ├── aws/ │ │ ├── Dockerfile │ │ └── maintenance/ │ │ ├── download │ │ └── upload │ ├── django/ │ │ ├── Dockerfile │ │ ├── celery/ │ │ │ ├── beat/ │ │ │ │ └── start │ │ │ ├── flower/ │ │ │ │ └── start │ │ │ └── worker/ │ │ │ └── start │ │ ├── entrypoint │ │ └── start │ ├── nginx/ │ │ ├── Dockerfile │ │ └── default.conf │ ├── postgres/ │ │ ├── Dockerfile │ │ └── maintenance/ │ │ ├── _sourced/ │ │ │ ├── constants.sh │ │ │ ├── countdown.sh │ │ │ ├── messages.sh │ │ │ └── yes_no.sh │ │ ├── backup │ │ ├── backups │ │ ├── restore │ │ └── rmbackup │ └── traefik/ │ ├── Dockerfile │ └── traefik.yml ├── config/ │ ├── __init__.py │ ├── api.py │ ├── api_router.py │ ├── asgi.py │ ├── celery_app.py │ ├── settings/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── local.py │ │ ├── production.py │ │ └── test.py │ ├── urls.py │ ├── websocket.py │ └── wsgi.py ├── docker-compose.docs.yml ├── docker-compose.local.yml ├── docker-compose.production.yml ├── docs/ │ ├── Makefile │ ├── __init__.py │ ├── conf.py │ ├── howto.rst │ ├── index.rst │ ├── make.bat │ ├── pycharm/ │ │ └── configuration.rst │ └── users.rst ├── gulpfile.mjs ├── justfile ├── locale/ │ ├── README.md │ ├── en_US/ │ │ └── LC_MESSAGES/ │ │ └── django.po │ ├── fr_FR/ │ │ └── LC_MESSAGES/ │ │ └── django.po │ └── pt_BR/ │ └── LC_MESSAGES/ │ └── django.po ├── manage.py ├── merge_production_dotenvs_in_dotenv.py ├── package.json ├── pyproject.toml ├── requirements/ │ ├── base.txt │ ├── local.txt │ └── production.txt ├── tests/ │ ├── __init__.py │ └── test_merge_production_dotenvs_in_dotenv.py ├── utility/ │ ├── install_os_dependencies.sh │ ├── install_python_dependencies.sh │ ├── requirements-bionic.apt │ ├── requirements-bookworm.apt │ ├── requirements-bullseye.apt │ ├── requirements-buster.apt │ ├── requirements-focal.apt │ ├── requirements-jammy.apt │ ├── requirements-jessie.apt │ ├── requirements-noble.apt │ ├── requirements-stretch.apt │ ├── requirements-trusty.apt │ └── requirements-xenial.apt ├── webpack/ │ ├── common.config.js │ ├── dev.config.js │ └── prod.config.js └── {{cookiecutter.project_slug}}/ ├── __init__.py ├── conftest.py ├── contrib/ │ ├── __init__.py │ └── sites/ │ ├── __init__.py │ └── migrations/ │ ├── 0001_initial.py │ ├── 0002_alter_domain_unique.py │ ├── 0003_set_site_domain_and_name.py │ ├── 0004_alter_options_ordering_domain.py │ └── __init__.py ├── static/ │ ├── fonts/ │ │ └── .gitkeep │ ├── js/ │ │ └── project.js │ └── sass/ │ ├── custom_bootstrap_vars.scss │ └── project.scss ├── templates/ │ ├── 403.html │ ├── 403_csrf.html │ ├── 404.html │ ├── 500.html │ ├── account/ │ │ └── base_manage_password.html │ ├── allauth/ │ │ ├── elements/ │ │ │ ├── alert.html │ │ │ ├── badge.html │ │ │ ├── button.html │ │ │ ├── field.html │ │ │ ├── fields.html │ │ │ ├── panel.html │ │ │ └── table.html │ │ └── layouts/ │ │ ├── entrance.html │ │ └── manage.html │ ├── base.html │ ├── pages/ │ │ ├── about.html │ │ └── home.html │ └── users/ │ ├── user_detail.html │ └── user_form.html └── users/ ├── __init__.py ├── adapters.py ├── admin.py ├── api/ │ ├── __init__.py │ ├── schema.py │ ├── serializers.py │ └── views.py ├── apps.py ├── context_processors.py ├── forms.py ├── managers.py ├── migrations/ │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tasks.py ├── tests/ │ ├── __init__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── test_openapi.py │ │ ├── test_urls.py │ │ └── test_views.py │ ├── factories.py │ ├── test_admin.py │ ├── test_forms.py │ ├── test_managers.py │ ├── test_models.py │ ├── test_tasks.py │ ├── test_urls.py │ └── test_views.py ├── urls.py └── views.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # http://editorconfig.org root = true [*] charset = utf-8 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true [*.{py,rst,ini}] indent_style = space indent_size = 4 [*.{html,css,scss,json,yml,xml,toml}] indent_style = space indent_size = 2 [*.md] trim_trailing_whitespace = false [Makefile] indent_style = tab [nginx.conf] indent_style = space indent_size = 2 ================================================ FILE: .gitattributes ================================================ * text=auto ================================================ FILE: .github/CONTRIBUTORS-template.md ================================================ # Contributors ## Core Developers These contributors have commit flags for the repository, and are able to accept and merge pull requests.
| Name | Github | |
|---|---|---|
| {{ contributor.name }} | {{ contributor.github_login }} | {{ contributor.twitter_username }} |
| Name | Github | |
|---|---|---|
| {{ contributor.name }} | {{ contributor.github_login }} | {{ contributor.twitter_username }} |
$ cookiecutter https://github.com/cookiecutter/cookiecutter-django project_name [Project Name]: ...
| Name | Github | |
|---|---|---|
| Daniel Roy Greenfeld | pydanny | pydanny |
| Audrey Roy Greenfeld | audreyr | audreyr |
| Fábio C. Barrionuevo da Luz | luzfcb | luzfcb |
| Saurabh Kumar | theskumar | _theskumar |
| Jannis Gebauer | jayfk | |
| Burhan Khalid | burhan | burhan |
| Shupeyko Nikita | webyneter | webyneter |
| Bruno Alla | browniebroke | _BrunoAlla |
| Wan Liuyang | sfdye | sfdye |
| Jelmer Draaijer | foarsitter |
| Name | Github | |
|---|---|---|
| 18 | dezoito | |
| 2O4 | 2O4 | |
| a7p | a7p | |
| Aadith PM | aadithpm | |
| Aaron Eikenberry | aeikenberry | |
| Abdul Qoyyuum | Qoyyuum | Qoyyuum |
| Abdullah Adeel | mabdullahadeel | abdadeel_ |
| Abe Hanoka | abe-101 | abe__101 |
| Adam Bogdał | bogdal | |
| Adam Dobrawy | ad-m | |
| Adam Steele | adammsteele | |
| Adin Hodovic | adinhodovic | |
| Agam Dua | ||
| Agustín Scaramuzza | scaramagus | scaramagus |
| aiden | anyidea | |
| Aidos Kanapyanov | aidoskanapyanov | |
| Alan Cyment | acyment | |
| Alberto Sanchez | alb3rto | |
| Alex Kanavos | alexkanavos | |
| Alex Tsai | caffodian | |
| Alexandr Artemyev | Mogost | MOGOST |
| Ali Shamakhi | ali-shamakhi | |
| Alvaro [Andor] | andor-pierdelacabeza | |
| Amjith Ramanujam | amjith | |
| Andreas Meistad | ameistad | |
| Andres Gonzalez | andresgz | |
| Andrew Chen Wang | Andrew-Chen-Wang | |
| Andrew Mikhnevich | zcho | |
| Andy Rose | ||
| Anna Callahan | jazztpt | |
| Anna Sidwell | takkaria | |
| Antonia Blair | antoniablair | antoniablairart |
| Anuj Bansal | ahhda | |
| Arcuri Davide | dadokkio | |
| Areski Belaid | areski | |
| Arkadiusz Michał Ryś | arrys | |
| Arnav Choudhury | arnav13081994 | |
| Artur Barseghyan | barseghyanartur | |
| AsheKR | ashekr | |
| Ashley Camba | ||
| asmo | a5m0 | |
| Barclay Gauld | yunti | |
| Bartek | btknu | |
| Ben Lopatin | ||
| Ben Warren | bwarren2 | |
| Benjamin Abel | ||
| Bert de Miranda | bertdemiranda | |
| Birtibu | Birtibu | |
| Bo Lopker | blopker | |
| Bo Peng | BoPeng | |
| Bogdan Mateescu | mateesville93 | |
| Bouke Haarsma | ||
| Brandon Rumiser | brumiser1550 | |
| Brent Payne | brentpayne | brentpayne |
| Bruce Olivier | bolivierjr | |
| Caio Ariede | caioariede | caioariede |
| Carl Johnson | carlmjohnson | carlmjohnson |
| Catherine Devlin | catherinedevlin | |
| Cebrail Yılmaz | b1sar | |
| Chao Yang Wu | goatwu1993 | |
| Charlie Macfarlane Brodie | tannart | |
| Charlie Smith | chuckus | |
| Chris Curvey | ccurvey | |
| Chris Franklin | ||
| Chris Franklin | hairychris | |
| Chris Pappalardo | ChrisPappalardo | |
| Christian González | nerdoc | |
| Christian Jauvin | cjauvin | |
| Christian Jensen | jensenbox | cjensen |
| Christopher Clarke | chrisdev | |
| Cole Mackenzie | cmackenzie1 | |
| Cole Maclean | cole | cole |
| Collederas | Collederas | |
| Corey Garvey | coreygarvey | |
| Craig Margieson | cmargieson | |
| Cristian Vargas | cdvv7788 | |
| Cullen Rhodes | c-rhodes | |
| Curtis St Pierre | curtisstpierre | cstpierre1388 |
| Cédric Gaspoz | cgaspoz | |
| dalrrard | dalrrard | |
| Dan Shultz | shultz | |
| Dani Hodovic | danihodovic | |
| Daniel Hepper | dhepper | danielhepper |
| Daniel Hillier | danifus | |
| Daniel Sears | highpost | highpost |
| Daniele Tricoli | eriol | |
| David | buckldav | |
| David Díaz | ddiazpinto | DavidDiazPinto |
| David Păcioianu | DavidPacioianu | |
| Davit Tovmasyan | davitovmasyan | |
| Davur Clementsen | dsclementsen | davur |
| Delio Castillo | jangeador | jangeador |
| Delphine LEMIRE | DelphineLemire | |
| Demetris Stavrou | demestav | |
| Denis Bobrov | delneg | |
| Denis Darii | DNX | |
| Denis Orehovsky | apirobot | |
| Denis Savran | blaxpy | |
| DevForsure | DevForsure | |
| Diane Chen | purplediane | purplediane88 |
| Diego Montes | d57montes | |
| Dominique Plante | dominiqueplante | |
| Dong Huynh | trungdong | |
| Donghoon Nam | codenamenam | |
| Douglas | douglascdev | |
| Duda Nogueira | dudanogueira | dudanogueira |
| duffn | duffn | |
| Dónal Adams | epileptic-fish | |
| Ed Morley | edmorley | |
| Emanuel Calso | bloodpet | bloodpet |
| enchance | enchance | |
| Eraldo Energy | eraldo | |
| Eric Groom | ericgroom | |
| Ernesto Cedeno | codnee | |
| Eyad Al Sibai | eyadsibai | |
| Fabian Affolter | fabaff | fabaff |
| farwill | farwill | |
| Fateme Fouladkar | FatemeFouladkar | |
| Felipe Arruda | arruda | |
| Filipe Nascimento | FilipeNas | |
| Florian Idelberger | step21 | windrush |
| Floyd Hightower | fhightower | |
| Francisco Navarro Morales | spothound | |
| Freddy | Hraesvelg | |
| Fuzzwah | Fuzzwah | |
| Gabriel Mejia | elgartoinf | elgartoinf |
| Garry Cairns | garry-cairns | |
| Garry Polley | garrypolley | |
| Geo Maciolek | GeoMaciolek | |
| ghazi-git | ghazi-git | |
| Gilbishkosma | Gilbishkosma | |
| GitBib | GitBib | |
| Glenn Wiskur | gwiskur | |
| Grant McLean | grantm | grantmnz |
| Guilherme Guy | guilherme1guy | |
| GvS | GvS666 | |
| Hamish Durkin | durkode | |
| Hana Belay | earthcomfy | |
| Hana Quadara | hanaquadara | |
| Hannah Lazarus | hanhanhan | |
| Harry Moreno | morenoh149 | morenoh149 |
| Harry Percival | hjwp | |
| Harshit Ranjan | HarshitR2004 | |
| Haseeb ur Rehman | professorhaseeb | professorhaseeb |
| Hendrik Schneider | hendrikschneider | |
| henningbra | henningbra | |
| Henrique G. G. Pereira | ikkebr | |
| hleroy | hleroy | |
| Hoai-Thu Vuong | thuvh | |
| Howie Zhao | howiezhao | |
| Ian Lee | IanLee1521 | |
| Igor Jerosimić | igor-wl | |
| Imran Rahman | infraredCoding | |
| innicoder | innicoder | |
| Irfan Ahmad | erfaan | erfaan |
| Isaac12x | Isaac12x | |
| itisnotyourenv | itisnotyourenv | |
| Ivan Khomutov | ikhomutov | |
| JAEGYUN JUNG | TGoddessana | |
| Jakub Boukal | SukiCZ | |
| Jakub Musko | umgelurgel | |
| James Williams | jameswilliams1 | |
| Jan Fabry | janfabry | |
| Jan Van Bruggen | jvanbrug | |
| Jason Mok | jasonmokk | |
| Jeff Foster | jeffpfoster | |
| Jens Kaeske | jkaeske | |
| Jens Nilsson | phiberjenz | |
| Jeongseok Kang | rapsealk | |
| Jerome Caisip | jeromecaisip | |
| Jerome Leclanche | jleclanche | Adys |
| Jimmy Gitonga | Afrowave | afrowave |
| jlitrell | jlitrell | |
| John | thorrak | |
| John Cass | jcass77 | cass_john |
| Johnny Metz | johnnymetz | |
| Jonathan Thompson | nojanath | |
| Jorge Valdez | jorgeavaldez | |
| Joseph Hanna | sanchimenea | |
| Josh596 | Josh596 | |
| jugglinmike | jugglinmike | |
| Jules Cheron | jules-ch | |
| Julien Almarcha | sladinji | |
| Julio Castillo | juliocc | |
| Kaido Kert | kaidokert | |
| kappataumu | kappataumu | kappataumu |
| Kaveh | ka7eh | |
| Kawsar Alam Foysal | iamfoysal | |
| Keith Bailey | keithjeb | |
| Keith Callenberg | keithcallenberg | |
| Keith Webber | townie | |
| Kevin A. Stone | ||
| Kevin Mills | millsks | |
| Kevin Ndung'u | kevgathuku | |
| Keyvan Mosharraf | keyvanm | |
| krati yadav | krati5 | |
| Krzysztof Szumny | noisy | |
| Krzysztof Żuraw | krzysztofzuraw | |
| Kuo Chao Cheng | wwwtony5488 | |
| lcd1232 | lcd1232 | |
| LECbg | LECbg | |
| Leifur Halldor Asgeirsson | leifurhauks | |
| Leo won | leollon | |
| Leo Zhou | glasslion | |
| Leon Kim | PilhwanKim | |
| Leonardo Jimenez | xpostudio4 | |
| Liam Brenner | SableWalnut | |
| Lin Xianyi | iynaix | |
| LJFP | ljfp | |
| Lucas Klasa | lucaskbr | |
| Luis Nell | originell | |
| Lukas Klein | ||
| Lyla Fischer | ||
| Malik Sulaimanov | flyudvik | flyudvik |
| Manas Mallick | ManDun | |
| Manjit Pardeshi | Manjit2003 | |
| Marcio Mazza | marciomazza | marciomazza |
| Marios Frixou | frixou89 | |
| Mariot Tsitoara | mariot | |
| Marlon Castillo | mcastle | |
| Martin Blech | ||
| Martin Saizar | msaizar | |
| Martín Blech | martinblech | |
| masavini | masavini | |
| Mateusz Ostaszewski | mostaszewski | |
| Matheus Jardim Bernardes | matheusjardimb | |
| Mathijs Hoogland | MathijsHoogland | |
| Matt Braymer-Hayes | mattayes | mattayes |
| Matt Knapper | mknapper1 | |
| Matt Linares | ||
| Matt Menzenski | menzenski | |
| Matt Warren | mfwarren | |
| Matthew Foster Walsh | mfosterw | |
| Matthew Sisley | mjsisley | |
| Matthias Sieber | manonthemat | MatzeOne |
| Maurício Gioachini | MauGx3 | |
| Meghan Heintz | dot2dotseurat | |
| Meraj | ichbinmeraj | merajsafari |
| Mesut Yılmaz | myilmaz | |
| Michael Gecht | mimischi | _mischi |
| Michael Samoylov | msamoylov | |
| Michael V. Battista | mvbattista | mvbattista |
| Mike97M | Mike97M | |
| milvagox | milvagox | milvagox |
| Min ho Kim | minho42 | |
| MinWoo Sung | SungMinWoo | |
| Mohamed Feddad | mrf345 | |
| monosans | monosans | |
| Morten Kaae | MortenKaae | |
| Mounir | mounirmesselmeni | |
| mozillazg | mozillazg | |
| mpoli | mpoli | |
| mpsantos | mpsantos | |
| Nadav Peretz | nadavperetz | |
| Naveen | naveensrinivasan | snaveen |
| Nico Stefani | nicolas471 | moby_dick91 |
| Nikita Sobolev | sobolevn | |
| Nix Siow | nixsiow | nixsiow |
| Noah H | nthall | |
| Oleg Russkin | rolep | |
| Omer-5 | Omer-5 | |
| Pablo | oubiga | |
| Pamela Fox | pamelafox | pamelafox |
| Param Kapur | paramkpr | ParamKapur |
| Parbhat Puri | parbhat | |
| Patrick Tran | theptrk | |
| Patrick Zhang | PatDuJour | |
| Paul Wulff | mtmpaulwulff | |
| Pawan Chaurasia | rjsnh1522 | |
| Pedro Campos | pcampos119104 | |
| Pepa | 07pepa | |
| Peter Bittner | bittner | |
| Peter Coles | mrcoles | |
| Philipp Matthies | canonnervio | |
| Pierre Chiquet | pchiquet | |
| PJ Hoberman | pjhoberman | |
| Plurific | paulschwenn | |
| Pulse-Mind | pulse-mind | |
| quroom | quroom | |
| qwerrrqw | qwerrrqw | |
| Raony Guimarães Corrêa | raonyguimaraes | |
| Raphael Pierzina | hackebrot | |
| Ray Besiga | raybesiga | raybesiga |
| Reggie Riser | reggieriser | |
| René Muhl | rm-- | |
| rguptar | rguptar | |
| Richard Hajdu | Tusky | |
| Robin | Kaffeetasse | |
| Roman Afanaskin | siauPatrick | |
| Roman Osipenko | romanosipenko | |
| Russell Davies | ||
| rxm7706 | rxm7706 | |
| Ryan Fitch | ryfi | |
| Sadra Yahyapour | lnxpy | lnxpylnxpy |
| Sam Collins | MightySCollins | |
| Sascha | saschalalala | saschalalala |
| Sebastian Reyes Espinosa | sebastian-code | sebastianreyese |
| Shayan Karimi | shywn-mrk | shywn_mrk |
| Simeon Emanuilov | s-emanuilov | s_emanuilov |
| Simon Rey | eqqe | |
| Soldatov Serhii | soldatov-ss | |
| Sorasful | sorasful | |
| Srinivas Nyayapati | shireenrao | |
| stepmr | stepmr | |
| Steve Steiner | ssteinerX | |
| Sudarshan Wadkar | wadkar | |
| Sule Marshall | suledev | |
| Sławek Ehlert | slafs | |
| TAKAHASHI Shuuji | shuuji3 | |
| Tames McTigue | Tamerz | |
| Tano Abeleyra | tanoabeleyra | |
| Taylor Baldwin | ||
| Tharushan | Tharushan | |
| Thibault J. | thibault | thibault |
| Thomas Booij | ThomasBooij95 | |
| Théo Segonds | show0k | |
| tildebox | tildebox | |
| Tim Claessens | timclaessens | |
| Tim Freund | timfreund | |
| Timm Simpkins | PoDuck | |
| tmajerech | tmajerech | |
| Tom Atkins | knitatoms | |
| Tom Offermann | ||
| Tosinibikunle | Tosinibikunle | |
| Travis McNeill | Travistock | tavistock_esq |
| Tubo Shi | Tubo | |
| Umair Ashraf | umrashrf | fabumair |
| Vadim Iskuchekov | Egregors | egregors |
| Vageeshan Mankala | vagi8 | |
| vascop | vascop | |
| Vicente G. Reyes | reyesvicente | highcenburg |
| Vikas Yadav | vik-y | |
| villancikos | villancikos | |
| Vincent Leduc | leducvin | |
| Vitaly Babiy | ||
| Vivian Guillen | viviangb | |
| Vlad Doster | vladdoster | |
| Wes Turner | westurner | westurner |
| Will | novucs | |
| Will Farley | goldhand | g01dhand |
| Will Gordon | wgordon17 | |
| William Archinal | archinal | |
| Xaver Y.R. Chen | yrchen | yrchen |
| Yaroslav Halchenko | ||
| Yotam Tal | yotamtal | |
| Yuchen Xie | mapx | |
| Zach Borboa | zachborboa | |
| zhaoruibing | zhaoruibing |
{% if exception %} {{ exception }} {% else %} You're not allowed to access this page. {% endif %}
{% endblock content %} {%- endraw %} ================================================ FILE: {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/403_csrf.html ================================================ {% raw %}{% extends "base.html" %} {% block title %}Forbidden (403){% endblock title %} {% block content %}{% if exception %} {{ exception }} {% else %} You're not allowed to access this page. {% endif %}
{% endblock content %} {%- endraw %} ================================================ FILE: {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/404.html ================================================ {% raw %}{% extends "base.html" %} {% block title %}Page not found{% endblock title %} {% block content %}{% if exception %} {{ exception }} {% else %} This is not the page you were looking for. {% endif %}
{% endblock content %} {%- endraw %} ================================================ FILE: {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/500.html ================================================ {% raw %}{% extends "base.html" %} {% block title %}Server Error{% endblock title %} {% block content %}We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.
{% endblock content %} {%- endraw %} ================================================ FILE: {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/account/base_manage_password.html ================================================ {% raw %}{% extends "account/base_manage.html" %} {% block main %}Use this document as a way to quick start any new project.
{% endblock content %} {% endblock main %}{{ object.name }}
{% endif %} {%- endraw %} {%- endif %}