Aitvaras
Aitvaras

Reputation: 261

Django rosetta url strange behaviour

Django 127.0.0.1:8000/rosetta does not work correctly in DEBUG = True. It will never let you edit translations.

When I change into False it works.

Upvotes: 0

Views: 452

Answers (1)

Jose Arrecio
Jose Arrecio

Reputation: 33

It may be that when you accessed http://localhost:8000/rosetta/ you where not loged in your app. Go to your login or http://localhost:8000/admin/ and log a valid user for your app, If not, you will get a Page not found (404)

Upvotes: 1

Related Questions