Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
osp
tools.ethertoff
Commits
02cf06c1
Commit
02cf06c1
authored
Nov 13, 2019
by
gijs
Browse files
Avoid unnecessary display of Bibliography header
parent
af470583
Changes
2
Hide whitespace changes
Inline
Side-by-side
generator/models.py
View file @
02cf06c1
...
...
@@ -211,7 +211,7 @@ class MultiLinkField(object):
else
:
key
=
keyFilter
(
target
)
for
existingLink
in
self
.
value
:
if
existingLink
.
target
==
key
:
if
existingLink
.
target
==
key
or
existingLink
.
target
==
target
:
return
existingLink
self
.
value
.
append
(
Link
(
key
,
self
.
contentType
,
inline
,
label
=
target
))
...
...
generator/templates/produser.html
View file @
02cf06c1
...
...
@@ -21,7 +21,7 @@
{{ produser.content }}
{% endif %}
{% if produser.events %}
{% if produser.events
and produser.events.targets
%}
<h2>
Activities
</h2>
<ul
class=
"simplelist"
>
{% for event in produser.events.targets %}
...
...
@@ -35,7 +35,7 @@
</ul>
{% endif %}
{% if produser.bibliography %}
{% if produser.bibliography
and produser.bibliography.targets
%}
<h2>
Bibliography
</h2>
<ul
class=
"simplelist"
>
{% for entry in produser.bibliography.targets %}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment