osmfj / sotmjp-website

State of the Map Japan Website based on Symposion.
https://stateofthemap.jp/
BSD 3-Clause "New" or "Revised" License
0 stars 3 forks source link

講演詳細で、講演者欄がない #116

Closed miurahr closed 9 years ago

miurahr commented 9 years ago

https://stateofthemap.jp/2015/schedule/presentation/9/

講演者の名前が出ていません。

miurahr commented 9 years ago

sotmjp/templates/schedule/presentation_detail.html が該当テンプレートですが、

    <h2>{{ presentation.title }}</h2>

    <h4>
        {% for speaker in speakers %}
            <a href="{% url 'speaker_profile' speaker.pk %}">{{ speaker }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}
    </h4>

のように、定義されているようです。

miurahr commented 9 years ago
<h4>
        {% for speaker in presentation.speakers %}
            <a href="{% url 'speaker_profile' speaker.pk %}">{{ speaker }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}
    </h4>

とすることで表示されるが、重複して表示されてしまう。

講演者1, 講演者1
miurahr commented 9 years ago

また、リンク先が #120 の別の問題に成る

miurahr commented 9 years ago

重複表示はステージング環境のデータ不整合のため、バグではない