Skip to content

Commit a10343b

Browse files
committed
add_tailwindcss, Removed crispyforms
1 parent 83bb112 commit a10343b

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

config/urls.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@
2020
import backendapi.urls
2121
from backendapi import views
2222

23+
2324
urlpatterns = [
2425
path("admin/", admin.site.urls),
2526
path("api/", include(backendapi.urls)),
2627
path("",views.base_view, name="base"),
27-
path("Registration",views.registration_view, name="registration")
28+
path("Registration",views.registration_view, name="registration"),
29+
path("__reload__/", include("django_browser_reload.urls")),
2830
]

theme/templates/base.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
{% load static tailwind_tags %}
1+
{% load tailwind_tags %}
2+
23
<!DOCTYPE html>
34
<html lang="en">
45
<head>

theme/templates/registration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load crispy_forms_tags %}
2+
33

44
{% block title %}registration{% endblock %}
55

0 commit comments

Comments
 (0)