About Us
26 |We believe technology should feel personal and powerful. 🌍
27 |└── My_learn ├── My_learn ├── __init__.py ├── __pycache__ │ ├── urls.cpython-313.pyc │ ├── view.cpython-313.pyc │ ├── wsgi.cpython-313.pyc │ ├── __init__.cpython-313.pyc │ └── settings.cpython-313.pyc ├── asgi.py ├── wsgi.py ├── view.py ├── urls.py └── settings.py ├── db.sqlite3 ├── static ├── images │ ├── bg1.jpg │ └── bg2.jpg └── style.css ├── manage.py └── template ├── about.html ├── contact.html ├── index.html └── index1.html /My_learn/My_learn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /My_learn/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/db.sqlite3 -------------------------------------------------------------------------------- /My_learn/static/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/static/images/bg1.jpg -------------------------------------------------------------------------------- /My_learn/static/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/static/images/bg2.jpg -------------------------------------------------------------------------------- /My_learn/My_learn/__pycache__/urls.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/My_learn/__pycache__/urls.cpython-313.pyc -------------------------------------------------------------------------------- /My_learn/My_learn/__pycache__/view.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/My_learn/__pycache__/view.cpython-313.pyc -------------------------------------------------------------------------------- /My_learn/My_learn/__pycache__/wsgi.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/My_learn/__pycache__/wsgi.cpython-313.pyc -------------------------------------------------------------------------------- /My_learn/My_learn/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/My_learn/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /My_learn/My_learn/__pycache__/settings.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ranshchettri/Django-Practice/HEAD/My_learn/My_learn/__pycache__/settings.cpython-313.pyc -------------------------------------------------------------------------------- /My_learn/My_learn/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for My_learn 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/5.2/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', 'My_learn.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /My_learn/My_learn/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for My_learn 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/5.2/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', 'My_learn.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /My_learn/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 | """Run administrative tasks.""" 9 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'My_learn.settings') 10 | try: 11 | from django.core.management import execute_from_command_line 12 | except ImportError as exc: 13 | raise ImportError( 14 | "Couldn't import Django. Are you sure it's installed and " 15 | "available on your PYTHONPATH environment variable? Did you " 16 | "forget to activate a virtual environment?" 17 | ) from exc 18 | execute_from_command_line(sys.argv) 19 | 20 | 21 | if __name__ == '__main__': 22 | main() 23 | -------------------------------------------------------------------------------- /My_learn/template/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |We believe technology should feel personal and powerful. 🌍
27 |📧 Email: hello@ranshtech.com
📞 Call: +977-1234567890
Building dreams with code and design! 🚀
34 |This is a simple home page created using Django templates.
29 |Here is some random text generated by the lorem tag:
30 | 31 || Name | 34 |Age | 35 |
|---|---|
| {{ d.uername }} | 39 |{{ d.age }} | 40 |