Skip to content

Bitly Clone with ModelForm and Crispy Form & TailwindCSS

Notifications You must be signed in to change notification settings

LanguageXange/django-app3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Bitly Clone

create shorter URLs for any webpage and also track how many clicks each get. Users will be able to add new links directly from the application.

Using ModelForm

# forms.py
from django import forms
class LinkForm(forms.ModelForm):
    class Meta:
        model = Link
        fields = ['name','url','slug']

Install Crispy Form

pip install django-crispy-forms pip install crispy-tailwind

About

Bitly Clone with ModelForm and Crispy Form & TailwindCSS

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published