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
254cd2f9
Commit
254cd2f9
authored
Aug 19, 2020
by
Subhadip Ghosh
Browse files
Fix for contributors search not working with full names.
parent
52d2832e
Changes
1
Hide whitespace changes
Inline
Side-by-side
contributors/templates/contributors/contributors.html
View file @
254cd2f9
...
...
@@ -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