summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2015-11-17 01:38:58 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2015-11-17 14:45:36 +0100
commitf4e52ab2980a5618f5121be360361ad45d438482 (patch)
tree5908c76c61342be01eb05c89f6849249bcc6635e /src/lib/Bcfg2/Reporting/templates
parent767fab36197a6eb1af4215b4d5d4c9a62a49bf11 (diff)
downloadbcfg2-f4e52ab2980a5618f5121be360361ad45d438482.tar.gz
bcfg2-f4e52ab2980a5618f5121be360361ad45d438482.tar.bz2
bcfg2-f4e52ab2980a5618f5121be360361ad45d438482.zip
Reporting/templates: Remove deprecated syntax
> Deprecated since version 1.8: > You can also pass a dotted Python path to a view function, but this > syntax is deprecated and will be removed in Django 1.10.
Diffstat (limited to 'src/lib/Bcfg2/Reporting/templates')
-rw-r--r--src/lib/Bcfg2/Reporting/templates/clients/detailed-list.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Reporting/templates/clients/detailed-list.html b/src/lib/Bcfg2/Reporting/templates/clients/detailed-list.html
index cf778504a..130d58ede 100644
--- a/src/lib/Bcfg2/Reporting/templates/clients/detailed-list.html
+++ b/src/lib/Bcfg2/Reporting/templates/clients/detailed-list.html
@@ -25,7 +25,7 @@ This is needed for Django versions less than 1.5
</tr>
{% for entry in entry_list %}
<tr class='{% cycle listview,listview_alt %}'>
- <td class='left_column'><a href='{% url "Bcfg2.Reporting.views.client_detail" hostname=entry.client.name pk=entry.id %}'>{{ entry.client.name }}</a></td>
+ <td class='left_column'><a href='{% url "reports_client_detail_pk" hostname=entry.client.name pk=entry.id %}'>{{ entry.client.name }}</a></td>
<td class='right_column' style='width:75px'><a href='{% add_url_filter state=entry.state %}'
class='{{entry|determine_client_state}}'>{{ entry.state }}</a></td>
<td class='right_column_narrow'>{{ entry.good_count }}</td>