Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
BeHub-web
Project
Project
Details
Activity
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dominik Rosiek
BeHub-web
Commits
6cfb7fb6
Commit
6cfb7fb6
authored
Nov 22, 2015
by
Rafal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
toggle work
parent
ea3e9864
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2400 additions
and
23 deletions
+2400
-23
bootstrap.js
BeHub/Hub/static/js/bootstrap.js
+2363
-0
bootstrap.min.js
BeHub/Hub/static/js/bootstrap.min.js
+7
-0
map.js
BeHub/Hub/static/js/map.js
+0
-0
project_detail.js
BeHub/Hub/static/js/project_detail.js
+4
-0
maps.html
BeHub/Hub/templates/user_panel/content/maps.html
+1
-17
project.html
BeHub/Hub/templates/user_panel/content/project.html
+22
-2
base.html
BeHub/Hub/templates/user_panel/default/base.html
+3
-4
No files found.
BeHub/Hub/static/js/bootstrap.js
0 → 100644
View file @
6cfb7fb6
This diff is collapsed.
Click to expand it.
BeHub/Hub/static/js/bootstrap.min.js
0 → 100644
View file @
6cfb7fb6
This diff is collapsed.
Click to expand it.
BeHub/Hub/static/js/map
,
js
→
BeHub/Hub/static/js/map
.
js
View file @
6cfb7fb6
File moved
BeHub/Hub/static/js/project_detail.js
0 → 100644
View file @
6cfb7fb6
$
(
'#myTabs a'
).
click
(
function
(
e
)
{
e
.
preventDefault
()
$
(
this
).
tab
(
'show'
)
})
\ No newline at end of file
BeHub/Hub/templates/user_panel/content/maps.html
View file @
6cfb7fb6
{% extends 'user_panel/default/base.html' %}
<h2>
Mapa
</h2>
{% block content %}
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-md-6"
>
<h2>
Mapa
</h2>
</div>
</div>
</div>
{% endblock content %}
\ No newline at end of file
BeHub/Hub/templates/user_panel/content/project.html
View file @
6cfb7fb6
...
@@ -4,9 +4,29 @@
...
@@ -4,9 +4,29 @@
<div
class=
"container"
>
<div
class=
"row"
>
{% include 'user_panel/content/maps.html' %}
<div
class=
"col-md-10 col-md-offset-1"
>
<ul
class=
"nav nav-tabs nav-justified"
>
<li
class=
"active"
><a
data-toggle=
"tab"
href=
"#beacons"
>
Twoje beacony
</a></li>
<li><a
data-toggle=
"tab"
href=
"#map"
>
Mapa
</a></li>
</ul>
<div
class=
"tab-content"
>
<div
id=
"beacons"
class=
"tab-pane fade in active"
>
<h3>
HOME
</h3>
<p>
Some content.
</p>
</div>
<div
id=
"map"
class=
"tab-pane fade"
>
{% include 'user_panel/content/maps.html' %}
</div>
</div>
</div>
</div>
</div>
{% endblock content %}
{% endblock content %}
\ No newline at end of file
BeHub/Hub/templates/user_panel/default/base.html
View file @
6cfb7fb6
...
@@ -10,7 +10,6 @@
...
@@ -10,7 +10,6 @@
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/dashboard.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/dashboard.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/login.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/login.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/footer.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/footer.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/left_bar.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/font-awesome.min.css' %}"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'css/font-awesome.min.css' %}"
/>
<title>
Activy
</title>
<title>
Activy
</title>
...
@@ -18,7 +17,6 @@
...
@@ -18,7 +17,6 @@
<body>
<body>
{% include 'user_panel/default/user_bar.html' %}
{% include 'user_panel/default/user_bar.html' %}
{% include 'user_panel/default/left_bar.html' %}
<div
id=
"wrap"
style=
"margin-top:20px;"
>
<div
id=
"wrap"
style=
"margin-top:20px;"
>
...
@@ -30,9 +28,10 @@
...
@@ -30,9 +28,10 @@
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"
></script>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"
></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script
src=
"{% static 'js/bootstrap.min.js' %}"
></script>
<script
src=
"{% static 'js/hobby_detail.js' %}"
></script>
<script
src=
"{% static 'js/map.js' %}"
></script>
<script
src=
"{% static 'js/map.js' %}"
></script>
<script
src=
"{% static 'js/project_detail.js' %}"
></script>
<script
src=
"{% static 'js/bootstrap.js' %}"
></script>
<script
src=
"{% static 'js/bootstrap.min.js' %}"
></script>
<
<
</
body
>
</
body
>
</html>
</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