File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
readthedocsext/theme/templates Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 23
23
{% endwith %}
24
24
25
25
{% if project.has_good_build %}
26
- < span > {% blocktrans with date=project.get_latest_build .date|timesince %}{{ date }} ago{% endblocktrans %}</ span >
26
+ < span > {% blocktrans with date=project.latest_internal_build .date|timesince %}{{ date }} ago{% endblocktrans %}</ span >
27
27
{% else %}
28
28
< span > {% trans "No builds" %}</ span >
29
29
{% endif %}
Original file line number Diff line number Diff line change 52
52
{% block list_item_header %}
53
53
< a href ="{% url "projects_detail " object.slug %}"> {{ object.name }}</ a >
54
54
< div class ="sub header ">
55
- {% with build=object.get_latest_build %}
55
+ {% with build=object.latest_internal_build %}
56
56
{% if build %}
57
57
< time data-content ="{{ build.date }} ">
58
58
{% if build.finished %}
78
78
{% endblock list_item_meta %}
79
79
80
80
{% block list_item_extra_items %}
81
- {% with build=object.get_latest_build %}
81
+ {% with build=object.latest_internal_build %}
82
82
{% if build %}
83
83
{% include "includes/elements/chips/build.html" with project=object build=build %}
84
84
{% endif %}
You can’t perform that action at this time.
0 commit comments