質問編集履歴

5

コード修正

2019/09/12 11:21

投稿

szxcfghjgf
szxcfghjgf

スコア4

test CHANGED
File without changes
test CHANGED
@@ -5,6 +5,8 @@
5
5
  ご教示お願い致します。
6
6
 
7
7
  ```
8
+
9
+
8
10
 
9
11
  #Model
10
12
 

4

コード修正

2019/09/12 11:21

投稿

szxcfghjgf
szxcfghjgf

スコア4

test CHANGED
File without changes
test CHANGED
@@ -1,12 +1,8 @@
1
1
  ### 前提・実現したいこと
2
-
3
- スケジュールテーブルから今日の曜日と一致するフラグが立っているレコードを取得したいと考えているのですが、
4
2
 
5
3
  クエリセットからキーを変数指定する記述方法が分かりません。
6
4
 
7
5
  ご教示お願い致します。
8
-
9
-
10
6
 
11
7
  ```
12
8
 

3

コード修正

2019/09/12 11:21

投稿

szxcfghjgf
szxcfghjgf

スコア4

test CHANGED
File without changes
test CHANGED
@@ -42,7 +42,7 @@
42
42
 
43
43
  for schedule in schedules:
44
44
 
45
- if schedule.[week_condition] is not True: # ここのキー名に変数を代入する記述方法が分かりません
45
+ if schedule.[week_condition] is True: # ここのキー名に変数を代入する記述方法が分かりません
46
46
 
47
47
  return True
48
48
 

2

コード修正

2019/09/12 11:19

投稿

szxcfghjgf
szxcfghjgf

スコア4

test CHANGED
File without changes
test CHANGED
@@ -34,8 +34,6 @@
34
34
 
35
35
  dt_now = timezone.now()
36
36
 
37
- today = dt_now.date()
38
-
39
37
  week_condition = 'is_active_week' + str(dt_now.weekday())
40
38
 
41
39
 

1

コード追加

2019/09/12 11:18

投稿

szxcfghjgf
szxcfghjgf

スコア4

test CHANGED
File without changes
test CHANGED
@@ -32,6 +32,8 @@
32
32
 
33
33
  # script
34
34
 
35
+ dt_now = timezone.now()
36
+
35
37
  today = dt_now.date()
36
38
 
37
39
  week_condition = 'is_active_week' + str(dt_now.weekday())