Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2020-101
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sachith Fernando
2020-101
Commits
1cd97a40
Commit
1cd97a40
authored
Sep 22, 2020
by
LiniEisha
Committed by
I.K Seneviratne
Oct 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial commit for summarizations
parent
277c15f5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
0 deletions
+31
-0
.idea/misc.xml
.idea/misc.xml
+3
-0
FirstApp/templates/FirstApp/template.html
FirstApp/templates/FirstApp/template.html
+14
-0
LectureSummarizingApp/templates/summarization.html
LectureSummarizingApp/templates/summarization.html
+10
-0
LectureSummarizingApp/views.py
LectureSummarizingApp/views.py
+4
-0
No files found.
.idea/misc.xml
View file @
1cd97a40
...
@@ -4,4 +4,7 @@
...
@@ -4,4 +4,7 @@
<option
name=
"languageLevel"
value=
"ES6"
/>
<option
name=
"languageLevel"
value=
"ES6"
/>
</component>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
project-jdk-name=
"Python 3.7"
project-jdk-type=
"Python SDK"
/>
<component
name=
"ProjectRootManager"
version=
"2"
project-jdk-name=
"Python 3.7"
project-jdk-type=
"Python SDK"
/>
<component
name=
"PyCharmProfessionalAdvertiser"
>
<option
name=
"shown"
value=
"true"
/>
</component>
</project>
</project>
\ No newline at end of file
FirstApp/templates/FirstApp/template.html
View file @
1cd97a40
...
@@ -83,6 +83,20 @@
...
@@ -83,6 +83,20 @@
</div>
</div>
</li>
</li>
<!-- Nav Item - Pages Collapse Menu -->
<li
class=
"nav-item"
>
<a
class=
"nav-link collapsed"
href=
"#"
data-toggle=
"collapse"
data-target=
"#collapseThree"
aria-expanded=
"true"
aria-controls=
"collapseThree"
>
<i
class=
"fas fa-fw fa-cog"
></i>
<span>
Lecture
</span>
</a>
<div
id=
"collapseThree"
class=
"collapse"
aria-labelledby=
"headingThree"
data-parent=
"#accordionSidebar"
>
<div
class=
"bg-white py-2 collapse-inner rounded"
>
<h6
class=
"collapse-header"
>
Components:
</h6>
<a
class=
"collapse-item"
href=
"/summary/summarization"
>
Summarization
</a>
</div>
ac
</div>
</li>
<!-- Nav Item - Utilities Collapse Menu -->
<!-- Nav Item - Utilities Collapse Menu -->
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link collapsed"
href=
"#"
data-toggle=
"collapse"
data-target=
"#collapseUtilities"
aria-expanded=
"true"
aria-controls=
"collapseUtilities"
>
<a
class=
"nav-link collapsed"
href=
"#"
data-toggle=
"collapse"
data-target=
"#collapseUtilities"
aria-expanded=
"true"
aria-controls=
"collapseUtilities"
>
...
...
LectureSummarizingApp/templates/summarization.html
0 → 100644
View file @
1cd97a40
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Summarization
</title>
</head>
<body>
<p>
This is summarization
</p>
</body>
</html>
\ No newline at end of file
LectureSummarizingApp/views.py
View file @
1cd97a40
from
django.shortcuts
import
render
from
django.shortcuts
import
render
# Create your views here.
# Create your views here.
def
summarization
(
request
):
return
render
(
request
,
"LectureSummarizingApp/summarization.html"
)
\ No newline at end of file
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