Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 3 years have passed since last update.

Djangoで作る日記帳アプリ④

Last updated at Posted at 2020-05-01

#環境
MacOS
Python 3.7.6
Django 3.0.5

#データの更新機能の追加
まずはurls.pyの編集を行います。下記のように更新ページ用のURLを追加しましょう。

urls.py
from django.urls import path
from .import views

app_name = 'diary'

urlpatterns = [
  path('', views.index, name='index'),
  path('add/', views.add, name='add'),
  path('update/<int:pk>/', views.update, name='update'),
]

 
続いてviews.pyを編集します。get_object_or_404をインポートすることを忘れないようにしましょう。上部は省略して追記分のみの記載になります。

views.py
def update(request, pk):
  day = get_object_or_404(Day, pk=pk)
  form = DayCreateForm(request.POST or None, instance=day)
  if request.method == 'POST' and form.is_valid():
    form.save()
    return redirect('diary:index')
  context = {
    'form':form
  }
  return render(request, 'diary/day_form.html', context)

 
続いてday_list.htmlに更新するためのアンカーリンクをつけます。

day_list.html
    <tr>
        <td>{{ day.title }}</td>
        <td>{{ day.date }}</td>
        <td><a href="{% url 'diary:update' day.pk %}">更新</a></td>
    </tr>

きちんと追加されました。
スクリーンショット 2020-05-02 0.43.08.png
 
#データの削除機能と詳細表示機能の追加
###データの削除機能の追加
データの更新のときのようにURLの追加から行います。

urls.py
urlpatterns = [
  path('', views.index, name='index'),
  path('add/', views.add, name='add'),
  path('update/<int:pk>/', views.update, name='update'),
  path('delete/<int:pk>/', views.delete, name='delete'),
]

続いてviews.pyに下記のコードを追記します。

views.py
def delete(request, pk):
  day = get_object_or_404(Day, pk=pk)
  if request.method == 'POST':
    day.delete()
    return redirect('diary:index')
  context = {
    'day':day,
  }
  return render(request, 'diary/day_confirm_delete.html', context)

 
続いてday_confirm_delete.htmlファイルを作成し、こちらのコードを記述します。

day_confirm_delete.html
{% extends 'diary/base.html' %}

{% block content %}
<form action='' method='POST'>
  <table class='table'>
    <tr>
      <th>タイトル</th>
      <td>{{ day.title }}</td>
    </tr>
    <tr>
      <th>本文</th>
      <td>{{ day.text | linebreaksbr }}</td>
    </tr>
    <tr>
      <th>日付</th>
      <td>{{ day.date }}</td>
    </tr>
  </table>
  <p>こちらのデータを削除します。</p>
  <button type='submit' class='btn btn-primary'>送信</button>
  {% csrf_token %}
</form>
{% endblock %}

 
続いてday_list.htmlに削除するためのアンカーリンクを追記します。

day_list.html
    <tr>
        <td>{{ day.title }}</td>
        <td>{{ day.date }}</td>
        <td><a href="{% url 'diary:update' day.pk %}">更新</a></td>
        <td><a href="{% url 'diary:delete' day.pk %}">削除</a></td>        
    </tr>

 
###データの更新機能の追加
データの削除機能の追加と同じ要領で行います。更新機能ページのURLを追記します。

urls.py
urlpatterns = [
  path('', views.index, name='index'),
  path('add/', views.add, name='add'),
  path('update/<int:pk>/', views.update, name='update'),
  path('delete/<int:pk>/', views.delete, name='delete'),
  path('detail/<int:pk>/', views.detail, name='detail'),
]

 
続いてviews.pyに下記のコードを追記します。

views.py
def detail(request, pk):
  day = get_object_or_404(Day, pk=pk)
  context = {
    'day':day,
  }
  return render(request, 'diary/day_detail.html', context)

 
続いてday_detail.htmlファイルを作成し、こちらのコードを記述します。

day_detail.html
{% extends 'diary/base.html' %}

{% block content %}
  <table class='table'>
    <tr>
      <th>タイトル</th>
      <td>{{ day.title }}</td>
    </tr>
    <tr>
      <th>本文</th>
      <td>{{ day.text | linebreaksbr}}</td>
    </tr>
    <tr>
      <th>日付</th>
      <td>{{ day.date }}</td>
    </tr>
  </table>
{% endblock %}

 
その次にタイトルをクリックして詳細を確認できるようにday_list.htmlを下記のように編集します。

day_list.html
    <tr>
        <td><a href="{% url 'diary:detail' day.pk %}">{{ day.title }}</a></td>
        <td>{{ day.date }}</td>
        <td><a href="{% url 'diary:update' day.pk %}">更新</a></td>
        <td><a href="{% url 'diary:delete' day.pk %}">削除</a></td>        
    </tr>

 
これでタイトルをクリックすることで詳細を確認することができます^_^
スクリーンショット 2020-05-02 1.09.00.png

#Djangoで作る日記帳アプリ一覧
Djangoで作る日記帳アプリ①
Djangoで作る日記帳アプリ②
Djangoで作る日記帳アプリ③
Djangoで作る日記帳アプリ④
Djangoで作る日記帳アプリ⑤

0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?