質問編集履歴

2

urlを変えた

2021/05/07 10:04

投稿

Mitsu_
Mitsu_

スコア10

test CHANGED
File without changes
test CHANGED
@@ -242,27 +242,23 @@
242
242
 
243
243
  **urls.py**
244
244
 
245
+ ```
246
+
245
- ```from django.urls import path
247
+ from django.urls import path
246
-
247
- from .views import (
248
+
248
-
249
- HomeView, UserLogoutView, registfunc, loginfunc
249
+ from .views import contact, products_home, regist_form
250
-
251
- )
250
+
252
-
253
- from . import views
254
-
255
- app_name ='account'
251
+ app_name='SellText'
256
-
252
+
257
- urlpatterns=[
253
+ urlpatterns = [
254
+
255
+
256
+
258
-
257
+ path('products/', products_home, name='products'),
258
+
259
- path('home/',HomeView.as_view(),name='home'),
259
+ path('home/', contact, name='contact'),
260
-
260
+
261
- path('regist/',views.registfunc,name='regist'),
261
+ path('regist_form/', regist_form, name='regist_form'),
262
-
263
- path('user_login/',loginfunc ,name='user_login'),
264
-
265
- path('user_logout/',UserLogoutView.as_view(),name='user_logout'),
266
262
 
267
263
  ]
268
264
 

1

画像

2021/05/07 10:04

投稿

Mitsu_
Mitsu_

スコア10

test CHANGED
@@ -1 +1 @@
1
- ModelFormを使いデータをDBに保存したいです。
1
+ 画像ModelFormを使いデータをDBに保存したいです。
test CHANGED
@@ -270,4 +270,6 @@
270
270
 
271
271
  ```
272
272
 
273
+ ![イメージ説明](d015c038bf61cd1c79b387724bd76482.png)
274
+
273
275
  どうぞよろしくお願いいたします。