我想將鏈接添加到管理員,它列出了模型的索引頁,但我不希望創建一個新的模式。這將是一個自定義的視圖。添加「假」的模式進入管理指數
這是我想要的結果。在這種情況下,排行榜應指向/管理/排行榜。 代碼和用戶是有效的型號。
我試圖重寫index.html頁面,根據to the documentation,使用以下模板。
{% extends "admin/index.html" %}
{% block content %}
{{ block.super }}
<div class="app-{{ app.app_label }} module">
<table>
<tr>
<th scope="row"><a href="leaderboards">Leaderboards</a></th>
<td></td>
</tr>
</table>
</div>
{% endblock %}
不過這是結果:
我知道我可以代替全index.html,然後硬編碼特定行有,但很多人不建議。有其他選擇嗎?
這就是答案。 –