Skip to content

Commit

Permalink
Display project id for orphaned projects
Browse files Browse the repository at this point in the history
- if the name value is not yet defined.
  • Loading branch information
rerobins committed Dec 19, 2017
1 parent ea2b2d0 commit f008520
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion autology_templates/project/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ <h1>Projects</h1>
<li>Orphaned Projects</li>
<ul>
{% for project in orphaned_projects %}
<li>{{project.name}}
<li>{% if project.name %}
{{project.name}}
{%else%}
id: {{project.id}}
{%endif %}</li>
{% endfor %}
</ul>
{% endif %}
Expand Down

0 comments on commit f008520

Please sign in to comment.