├── .DS_Store ├── .gitignore ├── db.sqlite3 ├── djangotweet ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── templates ├── base.html └── registration │ ├── login.html │ └── signup.html └── tweetapp ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_remove_tweet_nickname_tweet_username.py └── __init__.py ├── models.py ├── static └── tweetapp │ └── customform.css ├── templates └── tweetapp │ ├── addtweet.html │ ├── addtweetbyform.html │ ├── addtweetbymodelform.html │ └── listtweet.html ├── tests.py ├── urls.py └── views.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/.gitignore -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /djangotweet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangotweet/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/djangotweet/asgi.py -------------------------------------------------------------------------------- /djangotweet/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/djangotweet/settings.py -------------------------------------------------------------------------------- /djangotweet/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/djangotweet/urls.py -------------------------------------------------------------------------------- /djangotweet/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/djangotweet/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/manage.py -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/registration/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/templates/registration/signup.html -------------------------------------------------------------------------------- /tweetapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/admin.py -------------------------------------------------------------------------------- /tweetapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/apps.py -------------------------------------------------------------------------------- /tweetapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/forms.py -------------------------------------------------------------------------------- /tweetapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /tweetapp/migrations/0002_remove_tweet_nickname_tweet_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/migrations/0002_remove_tweet_nickname_tweet_username.py -------------------------------------------------------------------------------- /tweetapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/models.py -------------------------------------------------------------------------------- /tweetapp/static/tweetapp/customform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/static/tweetapp/customform.css -------------------------------------------------------------------------------- /tweetapp/templates/tweetapp/addtweet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/templates/tweetapp/addtweet.html -------------------------------------------------------------------------------- /tweetapp/templates/tweetapp/addtweetbyform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/templates/tweetapp/addtweetbyform.html -------------------------------------------------------------------------------- /tweetapp/templates/tweetapp/addtweetbymodelform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/templates/tweetapp/addtweetbymodelform.html -------------------------------------------------------------------------------- /tweetapp/templates/tweetapp/listtweet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/templates/tweetapp/listtweet.html -------------------------------------------------------------------------------- /tweetapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/tests.py -------------------------------------------------------------------------------- /tweetapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/urls.py -------------------------------------------------------------------------------- /tweetapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/P21-DjangoTweet/HEAD/tweetapp/views.py --------------------------------------------------------------------------------