Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

forms.py 240B

123456789
  1. from django import forms
  2. from .models import Post, CustomUser
  3. from django.contrib.auth.forms import UserCreationForm, UserChangeForm
  4. class PostForm(forms.ModelForm):
  5. class Meta:
  6. model = Post
  7. fields = ('title', 'text')