回答編集履歴
2
修正
test
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
```HTML
|
2
2
|
|
3
|
-
{% if user.
|
3
|
+
{% if user.is_superuser %}
|
4
4
|
|
5
5
|
```でTrueかFalseが返ります
|
1
修正
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
|
+
```でTrueかFalseが返ります
|