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

enhancement to settings view: fixes #466 #470

Merged
merged 2 commits into from Apr 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -16,14 +16,19 @@
<td>{{ object.description|placeholder }}</td>
</tr>
<tr>
itdependsnetworks marked this conversation as resolved.
Show resolved Hide resolved
<td>
<a href="{{ object.get_url_to_filtered_device_list }}">Scope of Devices</a>
<br/>via <a href="{{ object.dynamic_group.get_absolute_url }}">{{ object.dynamic_group.name }}</a>
</td>
<td>Dynamic Group</td>
<td><a href="{{ object.dynamic_group.get_absolute_url }}">{{ object.dynamic_group.name }}</a></td>
</tr>
<tr>
<td>Filter Query Logic</td>
<td>
<pre>{{ object.scope|render_json }}</pre></a>
</td>
</tr>
<tr>
<td>Scope of Devices</td>
<td><a href="{{ object.get_url_to_filtered_device_list }}">{{ object.get_url_to_filtered_device_list | length }}</a></td>
</tr>
</table>
</div>
{% endblock content_left_page %}
Expand Down