Skip to content

Add a backlink to newest for yanked crate versions #296

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

Merged
merged 2 commits into from
Mar 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 8 additions & 2 deletions app/templates/crate/version.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@

{{#if currentVersion.yanked}}
<div class='crate-info'>
This crate has been yanked, but it is still available for download for
other crates that may be depending on it.
<div>
<p>This crate has been yanked, but it is still available for download for
other crates that may be depending on it.</p>
<p>You may wish to
{{#link-to 'crate.versions' crate}}view all versions{{/link-to}} to find one that
has not been yanked.
</p>
</div>
</div>
{{else}}
<div class='crate-info'>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/crate/versions.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{{#link-to 'crate.version' version.num}}{{ version.num }}{{/link-to}}

<span class='small'>{{moment-format version.created_at 'LL'}}</span>
{{#if yanked}}
{{#if version.yanked}}
<span class='yanked'>yanked</span>
{{/if}}
</div>
Expand Down