add byline
This commit is contained in:
parent
b8f1c52613
commit
cb9ffc1a7c
2 changed files with 10 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
.texts {
|
||||
main > .texts {
|
||||
box-sizing: border-box;
|
||||
|
||||
a {
|
||||
|
|
|
@ -15,12 +15,17 @@
|
|||
<div>
|
||||
<a href="" id="play-fullscreen">Play</a>
|
||||
</div>
|
||||
<div class="texts">
|
||||
{% for text in film.related_texts %}
|
||||
<div>
|
||||
<a href="{{ text.get_absolute_url }}">{{ text.title }}</a>
|
||||
<div class="text">
|
||||
<a href="{{ text.get_absolute_url }}">
|
||||
{{ text.title }}<br>
|
||||
{{ text.byline }}
|
||||
</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block end %}
|
||||
|
|
Loading…
Reference in a new issue