]> git.p6c8.net - pcdenotes.git/commit
First commit of my notes Django application
authorPatrick Canterino <patrick@patrick-canterino.de>
Thu, 20 Jan 2022 19:38:50 +0000 (20:38 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Thu, 20 Jan 2022 19:38:50 +0000 (20:38 +0100)
commit3fb7b9dea69252f64ee82967dfca97baf1b02df7
tree6d4f58c9d8ac084a8ed7fbf038c21777b8a9cd84
First commit of my notes Django application

It's mainly a very simple blog without comments and other stuff.
Main purpose is to post short articles, called "notes".

It's loosely based on some Django tutorials.

This is the very first commit. The application is able to list the
notes and to display a single note.
19 files changed:
.gitignore [new file with mode: 0644]
manage.py [new file with mode: 0755]
notes/__init__.py [new file with mode: 0644]
notes/admin.py [new file with mode: 0644]
notes/apps.py [new file with mode: 0644]
notes/migrations/0001_initial.py [new file with mode: 0644]
notes/migrations/__init__.py [new file with mode: 0644]
notes/models.py [new file with mode: 0644]
notes/templates/note_detail.html [new file with mode: 0644]
notes/templates/note_list.html [new file with mode: 0644]
notes/tests.py [new file with mode: 0644]
notes/urls.py [new file with mode: 0644]
notes/views.py [new file with mode: 0644]
pcdenotes/__init__.py [new file with mode: 0644]
pcdenotes/asgi.py [new file with mode: 0644]
pcdenotes/settings.py [new file with mode: 0644]
pcdenotes/urls.py [new file with mode: 0644]
pcdenotes/wsgi.py [new file with mode: 0644]
requirements.txt [new file with mode: 0644]

patrick-canterino.de