回答編集履歴

2

修正

2020/05/14 04:15

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1,5 +1,5 @@
1
1
  ```HTML
2
2
 
3
- {% if user.username.is_superuser %}
3
+ {% if user.is_superuser %}
4
4
 
5
5
  ```でTrueかFalseが返ります

1

修正

2020/05/14 04:15

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1,13 +1,5 @@
1
- superuserってあなただけですか?何人かいたとしても数は限られているので
2
-
3
1
  ```HTML
4
2
 
5
- {% if user.username == あなたの名前 %}
3
+ {% if user.username.is_superuser %}
6
4
 
7
- ```とか
8
-
9
- ```HTML
10
-
11
- {% if user.username in superuserのリスト %}
12
-
13
- ```でできます
5
+ ```でTrueFalseが返ります