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
Debian New Member Process
contributors.debian.org
Commits
56e55dc4
Commit
56e55dc4
authored
Aug 19, 2020
by
Enrico Zini
Browse files
Merge branch 'master' into 'master'
Fix for contributors search not working with full names. See merge request
!9
parents
52d2832e
254cd2f9
Pipeline
#166557
passed with stage
in 1 minute and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
contributors/templates/contributors/contributors.html
View file @
56e55dc4
...
...
@@ -49,7 +49,9 @@ The information is based on <a href="{% url 'sources:list' %}">our current knowl
<tbody>
{% for p in people %}
<tr>
<td
data-search=
"{{p.user.username}}"
><a
href=
{{p.user.get_absolute_url}}
>
{{p.user.full_name|default:p.user}}
</a></td>
{% with fname=p.user.full_name %}
<td
data-search=
"{{p.user.username}} {{fname}}"
><a
href=
{{p.user.get_absolute_url}}
>
{{fname|default:p.user}}
</a></td>
{% endwith %}
<td
data-sort=
"{{p.until|date:"
m
"}}"
>
{{p.until|date:"F Y"}}
</td>
</tr>
{% endfor %}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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