前提
機械学習初心者です。
こちらのサイト(https://tsukasa-blog.com/programming/django-admin-add-url )を参考に、画像1枚目のようにhttp://127.0.0.1:8000/admin/app/ に追加ページのリンクのサイトを追加し、画像2枚目のように http://127.0.0.1:8000/admin/app/new を表示したいです。追加ページにアクセスしたところ 「SyntaxError: invalid syntax」 と返ってきてしまいました。
admin.py の return new_urls + http://127.0.0.1:8000/admin/app/new の構文が違うということはわかるのですが改善方法が分かりません。
初歩的な質問で恐縮ですが、ご教授頂けると幸いです。
実現したいこと
・追加ページへのリンクをサイトに追加したい。
・追加ページを表示できるようしたい。
変更したディレクトリ構造
app ├─admin.py └─templates ├─admin │ └─app │ ├─new.html │ └─change_list.html │ └─app ├─detail.html ├─index.html └─results.html
発生している問題・エラーメッセージ
return new_urls + http://127.0.0.1:8000/admin/app/new ^ SyntaxError: invalid syntax
該当のソースコード
admin.py
from django.contrib import admin from .models import Choice, Question class ChoiceInline(admin.TabularInline): model = Choice extra = 3 class QuestionAdmin(admin.ModelAdmin): fieldsets = [ (None, {'fields': ['question_text']}), ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}), ] inlines = [ChoiceInline] list_display = ('question_text', 'pub_date', 'was_published_recently') list_filter = ['pub_date'] search_fields = ['question_text'] actions = ['change_title_action'] @admin.register def get_urls(self): urls = super().get_urls() new_urls = [ path('new/', self.admin_site.admin_view(self.add_view), name="new"), ] return new_urls + http://127.0.0.1:8000/admin/app/new def new_view(self, request): return TemplateResponse(request, "admin/app/new.html") admin.site.register(Question, QuestionAdmin)
new.html
{% extends "admin/index.html" %} {% block content %} 追加ページ {% endblock %}
change_list.html
{% block content %} <span><</span><span>a </span><span>href</span><span>=</span>"/admin/app/add_page">追加ページへ<span><</span><span>/a></span> {% endblock %}
detail.html
<h1>{{ question.question_text }}</h1> {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %} <form action="{% url 'app:vote' question.id %}" method="post"> {% csrf_token %} {% for choice in question.choice_set.all %} <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}"> <label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br> {% endfor %} <input type="submit" value="Vote"> </form>
index.html
{% if latest_question_list %} <ul> {% for question in latest_question_list %} <li><a href="{% url 'app:detail' question.id %}">{{ question.question_text }}</a></li> {% endfor %} </ul> {% else %} <p>No app are available.</p> {% endif %}
results.html
<h1>{{ question.question_text }}</h1> <ul> {% for choice in question.choice_set.all %} <li>{{ choice.choice_text }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li> {% endfor %} </ul> <a href="{% url 'app:detail' question.id %}">Vote again?</a>
補足情報(FW/ツールのバージョンなど)
Django 4.0.6
Python3.8.13
Windows home10
0 コメント