Hi!
So I just started using Ralph, testing it out some. Made some Changes and played around some in the Web UI after setting upp the server. I then logged out and now when I surf to the URL I get this:
NoReverseMatch at /
Reverse for ‘back_office_backofficeasset_transition_bulk’ with arguments ‘(None,)’ and keyword arguments ‘{}’ not found. 1 pattern(s) tried: [‘back_office/backofficeasset/transition/(?P<transition_pk>\d+)']
Request Method:
GET
Request URL:
http://IP_ADRESS/
Django Version:
1.8.19
Exception Type:
NoReverseMatch
Exception Value:
Reverse for 'back_office_backofficeasset_transition_bulk' with arguments '(None,)' and keyword arguments '{}' not found. 1 pattern(s) tried: ['back_office/backofficeasset/transition/(?P<transition_pk>\\d+)’]
Exception Location:
/opt/ralph/ralph-core/lib/python3.6/site-packages/django/core/urlresolvers.py in _reverse_with_prefix, line 495
Python Executable:
/opt/ralph/ralph-core/bin/python
Python Version:
3.6.9
Python Path:
[’/var/local/ralph’,
‘/opt/ralph/ralph-core/bin’,
‘/opt/ralph/ralph-core/lib/python36.zip’,
‘/opt/ralph/ralph-core/lib/python3.6’,
‘/opt/ralph/ralph-core/lib/python3.6/lib-dynload’,
‘/usr/lib/python3.6’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages/odf’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages/odf’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages/odf’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages/odf’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages/odf’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages/odf’,
‘/opt/ralph/ralph-core/lib/python3.6/site-packages/odf’]
Server time:
fre, 21 Aug 2020 15:13:13 +0200
Error during template rendering
In template /opt/ralph/ralph-core/lib/python3.6/site-packages/ralph/admin/templates/admin/index.html, error at line 12
Reverse for ‘back_office_backofficeasset_transition_bulk’ with arguments ‘(None,)’ and keyword arguments ‘{}’ not found. 1 pattern(s) tried: [‘back_office/backofficeasset/transition/(?P<transition_pk>\d+)$’]
2
{% load i18n admin_static dashboard_tags cache log %}
3
4
{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
5
6
{% block breadcrumbs %}{% endblock %}
7
8
{% block content %}
9
10
11
12
{% ralph_summary %}
13
14
{% my_services request.user %}
15
{% dc_capacity data_centers %}
16
17
18
19
{% trans ‘My Recent Actions’ %}
20
{% get_admin_log 20 as admin_log for_user user %}
21
{% if not admin_log %}
22
Any idea what might have caused this, and moreso, how do I fix it?
Thanks!