Fix styling problem on reviewer overview, apparently the Boostrap CSS
anchor style gives a color to plain anchors instead of only touching a:link so don't put non-link inside <a> - Legacy-Id: 12084
This commit is contained in:
parent
27d9c18759
commit
e484f6b0ae
|
@ -23,7 +23,7 @@
|
|||
<tbody>
|
||||
{% for person in reviewers %}
|
||||
<tr {% if person.completely_unavailable %}class="completely-unavailable"{% endif %}>
|
||||
<td><a {% if person.settings_url %}href="{{ person.settings_url }}"{% endif %}>{{ person }}</a></td>
|
||||
<td>{% if person.settings_url %}<a href="{{ person.settings_url }}">{% endif %}{{ person }}{% if person.settings_url %}</a>{% endif %}</td>
|
||||
<td>
|
||||
<table class="simple-table">
|
||||
{% for req_pk, doc_name, deadline, state, assignment_to_closure_days in person.latest_reqs %}
|
||||
|
|
Loading…
Reference in a new issue