Skip to content

Commit

Permalink
詳細画面の作成
Browse files Browse the repository at this point in the history
  • Loading branch information
fukushigetomoya committed Sep 28, 2024
1 parent 9b00591 commit f396f90
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions templates/tweets/tweet_detail.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{% extends "base.html" %}

{% block title %}Detail{% endblock %}

{% block content %}
<p>{{ tweet.content }}</p>
<p>投稿者: {{ tweet.user.username }}</p>
<p>投稿日: {{ tweet.created_at }}</p>
{% endblock %}

0 comments on commit f396f90

Please sign in to comment.