DetailView를 이용하여 개인페이지를 만들어본다.
Read View
Derail View
class AccountView(CreateView):
model = User
form_class = UserCreationForm
success_url = reverse_lazy(’accountapp:hello_world’)
tmplate_name = ‘accountapp/create.html’
class AccountDetailView(DetailView):
model = User
template_name = ‘accountapp/detail.html’
{% extends ‘base.html’ %}
{% block content %}
<div style = text-aligen: center>
<div>
<p>
{{ user.date_joined }}
</p>
<h2>
{{ user.username }}
</h2>
</div>
{% endblock %}