David Barragán Merino
David Barragán Merino
I fix this removing `TagList` and change `TagListSerializerField` ```python class TagListSerializerField(serializers.Field): # (...) def to_representation(self, value): if type(value) is not list: return [tag.name for tag in value.all()] return value ```
I have the same problem with `.pug` files. My components usually have this structure: ``` Header/ Header.css Header.pug Header.spec.ts Header.vue ```
@JekoTronik epics was included in the [last release](https://blog.taiga.io/taiga-stellaria-borealis-release-300.html) and you can see an example here: https://tree.taiga.io/project/the-princess-bride/epics
it's not possible right now, We have a user story in Taiga (https://tree.taiga.io/project/taiga/us/1563) to implement Epics Stories and a post (https://blog.taiga.io/epic-stories.html) in our blog about that. Pull requests are wellcome,...
@MakerTim yes, is AGPL like Taiga https://github.com/taigaio/taiga-contrib-slack
What taiga-back version are you using?
So common.py for this version have: ``` TEMPLATES = [ { "BACKEND": "django_jinja.backend.Jinja2", "DIRS": [ os.path.join(BASE_DIR, "templates"), ], "APP_DIRS": True, "OPTIONS": { 'context_processors': [ "django.contrib.auth.context_processors.auth", "django.template.context_processors.request", "django.template.context_processors.i18n", "django.template.context_processors.media", "django.template.context_processors.static", "django.template.context_processors.tz",...
Mmmmm, try in an "incognito mode" window or remove the browser cache. Maybe it could be a problem with the network infrastructure that remove the auth header from the request....
You are watching the browser request headers in the browser console, but you need to watch if the headers arribe to the server. You could regenerate the user password and...
maybe playing with the nginx settings to display the headers in the log file. Or debugging the code (https://github.com/taigaio/taiga-back/blob/master/taiga/auth/backends.py)