Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
c805ef8f
Commit
c805ef8f
authored
8 years ago
by
delanoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CSS] Some tests with the sub-menu. In fact, the separator seems to be not a good idea.
parent
9a8dfdae
master
anoe-gargantext-light
c24b-stable
c24b-stable-patch
c24b-testing-
dev
dev-graphExplorerJSON
gargantext-light
install
remote
scraping
simon-experimental
simon-gargantext-light
simon-rest-doc
simon-testing
simon-unstable
stable
stable-help
stable-imt
stable-imt-hal
stable-imt-link
stable-imt-merge
stable-imt-notebook
stable-notebook
stable-origin
stable-patch
stable-v3-imt
testing
testing-distri
testing-graph-growth
testing-graph-public
testing-imt
testing-jwt
testing-langParsing
testing-merge
testing-mine
testing-notebook
testing-share
unstable
unstable-docker
unstable-newBdd
unstable-notebook
unstable-philoNotebook
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
5 deletions
+16
-5
corpora.py
gargantext/views/pages/corpora.py
+2
-1
journals.html
templates/pages/corpora/journals.html
+2
-0
titles.html
templates/pages/corpora/titles.html
+1
-0
menu.html
templates/pages/menu.html
+11
-4
No files found.
gargantext/views/pages/corpora.py
View file @
c805ef8f
...
@@ -37,7 +37,8 @@ def docs_by_titles(request, project_id, corpus_id):
...
@@ -37,7 +37,8 @@ def docs_by_titles(request, project_id, corpus_id):
'date'
:
datetime
.
now
(),
'date'
:
datetime
.
now
(),
'project'
:
project
,
'project'
:
project
,
'corpus'
:
corpus
,
'corpus'
:
corpus
,
'view'
:
'titles'
'view'
:
'titles'
,
'user'
:
request
.
user
},
},
)
)
...
...
This diff is collapsed.
Click to expand it.
templates/pages/corpora/journals.html
View file @
c805ef8f
...
@@ -34,9 +34,11 @@
...
@@ -34,9 +34,11 @@
</center>
</center>
</div>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"row"
>
<div
id=
"monthly-volume-chart"
></div>
<div
id=
"monthly-volume-chart"
></div>
</div>
</div>
<div
id=
"content_loader"
>
<div
id=
"content_loader"
>
<br>
<br>
<center>
<center>
...
...
This diff is collapsed.
Click to expand it.
templates/pages/corpora/titles.html
View file @
c805ef8f
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
</center>
</center>
</div>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"row"
>
<div
id=
"monthly-volume-chart"
></div>
<div
id=
"monthly-volume-chart"
></div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
templates/pages/menu.html
View file @
c805ef8f
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
<ul
class=
"nav pull-right"
>
<ul
class=
"nav pull-right"
>
<li
class=
"dropdown"
>
<li
class=
"dropdown"
>
<a
href=
"#"
role=
"button"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
title=
"That is your
login
"
>
<a
href=
"#"
role=
"button"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
title=
"That is your
username
"
>
<i
class=
"icon-user"
></i>
<i
class=
"icon-user"
></i>
{{ user.username }}
{{ user.username }}
<i
class=
"caret"
></i>
<i
class=
"caret"
></i>
...
@@ -66,16 +66,23 @@
...
@@ -66,16 +66,23 @@
<div
class=
"col-md-12"
>
<div
class=
"col-md-12"
>
<div
class=
"btn-group btn-group-justified"
>
<div
class=
"btn-group btn-group-justified"
>
<center>
<center>
<a
type=
"button"
class=
"btn btn-default
href="
/
projects
/{{
project
.
id
}}/
corpora
/{{
corpus
.
id
}}/"
>
Export corpus
</a>
<!-- <li class="divider"></li> --!>
<a type="button" class="btn btn-default
<a type="button" class="btn btn-default
{% if view == "titles" %}active{%endif%}"
{% if view == "titles" %}active{%endif%}"
href=
"/projects/{{project.id}}/corpora/{{ corpus.id }}/"
>
By t
itles
</a>
href="/projects/{{project.id}}/corpora/{{ corpus.id }}/">
T
itles</a>
<a type="button" class="btn btn-default
<a type="button" class="btn btn-default
{% if view == "journals" %}active{%endif%}"
{% if view == "journals" %}active{%endif%}"
href=
"/projects/{{project.id}}/corpora/{{ corpus.id }}/journals"
>
By j
ournals
</a>
href="/projects/{{project.id}}/corpora/{{ corpus.id }}/journals">
J
ournals</a>
<a type="button" class="btn btn-default
<a type="button" class="btn btn-default
{% if view == "terms" %}active{%endif%}"
{% if view == "terms" %}active{%endif%}"
href=
"/projects/{{project.id}}/corpora/{{ corpus.id }}/terms"
>
By t
erms
</a>
href="/projects/{{project.id}}/corpora/{{ corpus.id }}/terms">
T
erms</a>
<!-- <li class="divider"></li> --!>
<!-- FIXME put a separator here --!>
<!-- FIXME put a separator here --!>
<a type="button" class="btn btn-default
<a type="button" class="btn btn-default
{% if view == "charts" %}active{%endif%}"
{% if view == "charts" %}active{%endif%}"
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment