Skip to content
Snippets Groups Projects
Commit 52fa23ff authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Fix some problems after merge

parent 66fbf4d5
No related branches found
No related tags found
No related merge requests found
...@@ -80,10 +80,11 @@ def corpus(corpus_id): ...@@ -80,10 +80,11 @@ def corpus(corpus_id):
title='Corpus' title='Corpus'
) )
else: else:
print('public') corpus_files = [x.to_json_serializeable() for x in corpus.files]
return render_template( return render_template(
'corpora/corpus_public.html.j2', 'corpora/corpus_public.html.j2',
corpus=corpus, corpus=corpus,
corpus_files=corpus_files,
title='Corpus' title='Corpus'
) )
......
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
if (response.status === 404) {app.flash('Not Found', 'error'); reject(response);} if (response.status === 404) {app.flash('Not Found', 'error'); reject(response);}
{# app.flash(`You are not following "{{ corpus.title }}" anymore`, 'corpus'); #} {# app.flash(`You are not following "{{ corpus.title }}" anymore`, 'corpus'); #}
resolve(response); resolve(response);
window.location.href = '{{ url_for("corpora.public_corpus", corpus_id=corpus.id) }}'; window.location.href = '{{ url_for("corpora.corpus", corpus_id=corpus.id) }}';
}, },
(response) => { (response) => {
app.flash('Something went wrong', 'error'); app.flash('Something went wrong', 'error');
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
if (response.status === 403) {app.flash('Forbidden', 'error'); reject(response);} if (response.status === 403) {app.flash('Forbidden', 'error'); reject(response);}
if (response.status === 404) {app.flash('Not Found', 'error'); reject(response);} if (response.status === 404) {app.flash('Not Found', 'error'); reject(response);}
{# app.flash(`You follow "{{ corpus.title }}" now`, 'corpus'); #} {# app.flash(`You follow "{{ corpus.title }}" now`, 'corpus'); #}
window.location.href = '{{ url_for("corpora.public_corpus", corpus_id=corpus.id) }}'; window.location.href = '{{ url_for("corpora.corpus", corpus_id=corpus.id) }}';
resolve(response); resolve(response);
}, },
(response) => { (response) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment