Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to in-progress build from dashboard. #5431

Merged
merged 2 commits into from
Jun 5, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion readthedocs/templates/projects/onboard_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,14 @@ <h2>{% trans "Your documentation failed to build" %}</h2>
{% endif %}
{% else %}
<h2>{% trans "Your documentation is building" %}</h2>


{% url "builds_detail" project_slug=project.slug build_pk=onboard.build.pk as latest_build_url %}
<p>
{% blocktrans trimmed %}
You'll be able to view your documentation in a minute or two,
once your project is done building.
For more information about the build,
click <a href="{{ latest_build_url }}">here.</a>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can just put the link in the above text Your documentation is building

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that sounds better. I've made the change.

{% endblocktrans %}
</p>
{% endif %}
Expand Down