1

関連するビューは次のとおりです。

class board_lv(generic.ListView):
    template_name = 'boardList.html'    
    context_object_name = 'notice_List'
    def get_queryset(self):
        self.Board = get_object_or_404(Board, name=self.args[0])
        if self.args[0] == 'all':           
            return Notice.objects.order_by('-posted_on')
        else:
            return Notice.objects.filter(board=self.Board)

    def get_context_data(self, **kwargs):
        context = super(board_lv, self).get_context_data(**kwargs)  
        context['c_board'] = self.Board;

そして、ここにHTMLテンプレートがあります:

<h1>/b/ {{c_board}}</h1>
<ul>
{% for n in notice_list %}
    <li>
    {% if not n.isText %} 
        <h2><a href="{{ n.content }}">{{ n.title }}</a></h2>(/b/{{n.board}})<br>    
    {% else %}
        <h2><a href= "{% url 'detail' n.id %}">{{ n.title }}</a></h2>(/b/{{n.board}})
        <p>{{ n.content|slice:":100" }}</p>     
    {% endif %}
        <a href="{% url 'detail' n.id %}">Comments</a>{{n.thumbs_up}}   
    </li>
{% endfor %}
</ul>

このビューを呼び出すボードの URL に移動すると、左上隅にある最初の "/b/" だけが表示されます。コンテキストに問題があると思いますが、指を置くことはできません。

どんな助けでも大歓迎です。

4

1 に答える 1