Attract dashboard placeholder
This commit is contained in:
15
src/styles/_dashboard.sass
Normal file
15
src/styles/_dashboard.sass
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
#dashboard
|
||||||
|
width: 100%
|
||||||
|
padding: 0 20px
|
||||||
|
|
||||||
|
.d-activity
|
||||||
|
ul
|
||||||
|
padding: 5px 10px
|
||||||
|
color: $color-text-dark-primary
|
||||||
|
list-style: none
|
||||||
|
|
||||||
|
+container-box
|
||||||
|
|
||||||
|
li
|
||||||
|
padding: 5px 0
|
@@ -5,3 +5,4 @@
|
|||||||
@import _base
|
@import _base
|
||||||
@import _tasks
|
@import _tasks
|
||||||
@import _shots
|
@import _shots
|
||||||
|
@import _dashboard
|
||||||
|
@@ -1,27 +1,45 @@
|
|||||||
| {% extends 'attract/layout.html' %}
|
| {% extends 'attract/layout.html' %}
|
||||||
| {% block page_title %}Attract{% endblock %}
|
| {% block page_title %}Attract{% endblock %}
|
||||||
| {% block body %}
|
|
||||||
#page-container
|
|
||||||
#page-header
|
|
||||||
.page-title-icons
|
|
||||||
i.pi-blender-cloud
|
|
||||||
i.pi-heart-filled
|
|
||||||
i.pi-users
|
|
||||||
.page-title
|
|
||||||
| Attract
|
|
||||||
.page-title-summary
|
|
||||||
| Manage your film project. This is about people.
|
|
||||||
|
|
||||||
#page-content
|
| {% block body %}
|
||||||
.page-triplet-container.homepage
|
#dashboard
|
||||||
.row
|
.row
|
||||||
.col-md-4
|
.col-md-6
|
||||||
h2 The edit
|
h3 My Tasks
|
||||||
p one column
|
a.pull-right
|
||||||
.col-md-4
|
small View All
|
||||||
h2 Tasks
|
|
||||||
a(href="{{ url_for('attract.tasks.index') }}") Go to task manager
|
#task-list.col-list
|
||||||
.col-md-4
|
- for (var i = 0; i < 15; ++i) {
|
||||||
h2 Other stuff
|
a.col-list-item.task-list-item(
|
||||||
p three column
|
id="task-(TASK_ID)",
|
||||||
|
class="status-review task-link",
|
||||||
|
href="#")
|
||||||
|
span.status-indicator
|
||||||
|
span.name Task Name
|
||||||
|
span.type type
|
||||||
|
- }
|
||||||
|
|
||||||
|
.col-md-6
|
||||||
|
h3 Latest Edit
|
||||||
|
img.img-responsive(src="http://placehold.it/500x250")
|
||||||
|
|
||||||
|
.d-activity
|
||||||
|
h3 Activity
|
||||||
|
|
||||||
|
ul
|
||||||
|
- for (var i = 1; i < 11; ++i) {
|
||||||
|
li= i
|
||||||
|
span Activity Stuff
|
||||||
|
- }
|
||||||
|
|
||||||
|
|
||||||
|
h3 Stats
|
||||||
|
.progress
|
||||||
|
.progress-bar.progress-bar-success(role="progressbar", style="width:50%")
|
||||||
|
| Final
|
||||||
|
.progress-bar.progress-bar-info(role="progressbar", style="width:30%")
|
||||||
|
| Review
|
||||||
|
.progress-bar.progress-bar-danger(role="progressbar", style="width:20%")
|
||||||
|
| ToDo
|
||||||
| {% endblock %}
|
| {% endblock %}
|
||||||
|
Reference in New Issue
Block a user