Developed a comprehensive Phonebook application using Django, providing a user-friendly interface for managing contacts efficiently. Phonebook is a simple Django app to manage contacts (first name, last name, mail, phone, mobile phone)
- HTML5: Used for structuring the web pages.
- CSS3: Employed for styling and layout.
- Django: For Backend
- Add 'phonebook' to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
...
'phonebook',
)
- Include the phonebook URLconf in your project urls.py like this:
url(r'^phonebook/', include('phonebook.urls')),
- Run 'python manage.py' syncdb to create the phonebook models.
- Start the development server and visit 'http://127.0.0.1:8000/phonebook/' to start phonebook.
- Create, edit, delete groups on contacts