Commit ebad40b7 authored by c24b's avatar c24b

TERMS resource_by_name

parent de350868
...@@ -2,7 +2,7 @@ from gargantext.util.http import requires_auth, render, settings ...@@ -2,7 +2,7 @@ from gargantext.util.http import requires_auth, render, settings
from gargantext.util.db import session from gargantext.util.db import session
from gargantext.util.db_cache import cache from gargantext.util.db_cache import cache
from gargantext.models import Node from gargantext.models import Node
from gargantext.constants import resourcename from gargantext.constants import get_resource_by_name
from datetime import datetime from datetime import datetime
@requires_auth @requires_auth
...@@ -42,7 +42,7 @@ def ngramtable(request, project_id, corpus_id): ...@@ -42,7 +42,7 @@ def ngramtable(request, project_id, corpus_id):
'date': datetime.now(), 'date': datetime.now(),
'project': project, 'project': project,
'corpus' : corpus, 'corpus' : corpus,
'resourcename' : resourcename(corpus), 'resourcename' : get_resource_by_name(corpus),
'view': 'terms', 'view': 'terms',
# for the CSV import modal # for the CSV import modal
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment