ReactJs Notes Get link Facebook X Pinterest Email Other Apps September 01, 2023 For creating new project using typescript tempalte npx create-react-app my-app --template typescript Get link Facebook X Pinterest Email Other Apps Comments
The Dashboard Accounts Django Source January 08, 2021 VIEWS from django.shortcuts import render, redirect from django.http import HttpResponse from django.forms import inlineformset_factory from django.contrib.auth.forms import UserCreationForm from django.contrib.auth import authenticate, login, logout from django.contrib import messages from django.contrib.auth.decorators import login_required # Create your views here. from .models import * from .forms import OrderForm, CreateUserForm from .filters import OrderFilter def registerPage ( request ): if request.user.is_authenticated: return redirect( 'home' ) else : form = CreateUserForm() ... Read more
Main Template February 19, 2021 {% load static %} <! DOCTYPE html > < html > < head > < title > CRM </ title > < link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity = "sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin = "anonymous" > < link rel = "stylesheet" type = "text/css" href = "{% static '/css/main.css' %}" > </ head > < body > {% include 'accounts/navbar.html' %} < div class = "container-fluid" > {% block content %} {% endblock %} < hr > < h5 > Our footer </ h5 > </ body > <... Read more
Comments
Post a Comment