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

In device family, make total device count a clickable link for list of devices in the device type #5568

Merged
merged 11 commits into from
Apr 18, 2024
1 change: 1 addition & 0 deletions changes/5568.changed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added url link to the total device count number under device family.
2 changes: 1 addition & 1 deletion nautobot/dcim/templates/dcim/devicefamily_retrieve.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</tr>
<tr>
<td>Total Devices</td>
<td>{{ total_devices }}</td>
<td><a href="{% url 'dcim:device_list' %}?device_family={{ object.name }}">{{ total_devices }}</a></td>
</tr>
</table>
</div>
Expand Down