質問編集履歴
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -382,13 +382,13 @@
|
|
382
382
|
|
383
383
|
{% for tweet in tweet_list %}
|
384
384
|
|
385
|
-
<a href="{% url '
|
385
|
+
<a href="{% url 'app:tweet_detail' tweet.pk %}"><h3>{{ tweet.title }}</h3></a>
|
386
386
|
|
387
387
|
<p>{{ tweet.month }}月{{ tweet.date }}日{{ tweet.hour }}時{{ tweet.place }}</p>
|
388
388
|
|
389
389
|
{% empty %}
|
390
390
|
|
391
|
-
<p>
|
391
|
+
<p>空</p>
|
392
392
|
|
393
393
|
{% endfor %}
|
394
394
|
|
@@ -402,13 +402,13 @@
|
|
402
402
|
|
403
403
|
{% for tweet in tweet_list %}
|
404
404
|
|
405
|
-
<a href="{% url '
|
405
|
+
<a href="{% url 'app:tweet_detail' tweet.pk %}"><h3>{{ tweet.title }}</h3></a>
|
406
406
|
|
407
407
|
<p>{{ tweet.month }}月{{ tweet.date }}日{{ tweet.hour }}時{{ tweet.place }}</p>
|
408
408
|
|
409
409
|
{% empty %}
|
410
410
|
|
411
|
-
<p>
|
411
|
+
<p>空</p>
|
412
412
|
|
413
413
|
{% endfor %}
|
414
414
|
|