diff --git a/src/templates/attract/shots/for_project.jade b/src/templates/attract/shots/for_project.jade index a94668d..a3fa627 100644 --- a/src/templates/attract/shots/for_project.jade +++ b/src/templates/attract/shots/for_project.jade @@ -1,30 +1,23 @@ | {% extends 'attract/layout.html' %} -| {% block page_title %}Shots{% endblock %} +| {% block page_title %}Shots for project {{ project.name }}{% endblock %} | {% block body %} -#page-container - #page-header - .page-title - | Shots for project {{ project.name }} - - #page-content - .page-triplet-container.homepage - .row - .col-md-8 - table - thead - tr - td Shot name - | {% for task_type in attract_props.task_types.attract_shot %} - td {{ task_type}} - | {% endfor %} - tbody - | {% for shot in shots %} - tr - td {{ shot.name }} - | {% for task_type in attract_props.task_types.attract_shot %} - td tasks of type {{ task_type }} - | {% endfor %} - | {% endfor %} - .col-md-4 - .well Task details here +#col_main + h1 Shots for {{ project.name }} + table + thead + tr + td Shot name + | {% for task_type in attract_props.task_types.attract_shot %} + td {{ task_type}} + | {% endfor %} + tbody + | {% for shot in shots %} + tr + td {{ shot.name }} + | {% for task_type in attract_props.task_types.attract_shot %} + td tasks of type {{ task_type }} + | {% endfor %} + | {% endfor %} +#col_right + h1 Right | {% endblock %} diff --git a/src/templates/attract/shots/index.jade b/src/templates/attract/shots/index.jade index c5d6f09..8f55639 100644 --- a/src/templates/attract/shots/index.jade +++ b/src/templates/attract/shots/index.jade @@ -1,23 +1,13 @@ | {% extends 'attract/layout.html' %} -| {% block page_title %}Shots{% endblock %} +| {% block page_title %}Attract - Shots{% endblock %} | {% block body %} -#page-container - #page-header - .page-title - | Attract - Shots - - #page-content - .page-triplet-container.homepage - .row - .col-md-4 - h2 Attract projects - ul - | {% for project in projects %} - li - a(href="{{ url_for('attract.shots.perproject.index', project_url=project.url) }}") {{ project.name }} - | {% endfor %} - .col-md-4 - h2 project 2 - .col-md-4 - h2 project 3 +#col_main + h1 Attract projects + ul + | {% for project in projects %} + li + a(href="{{ url_for('attract.shots.perproject.index', project_url=project.url) }}") {{ project.name }} + | {% endfor %} +#col_right + h1 Right | {% endblock %} diff --git a/src/templates/attract/shots/shot.jade b/src/templates/attract/shots/shot.jade index f8713be..5e231ed 100644 --- a/src/templates/attract/shots/shot.jade +++ b/src/templates/attract/shots/shot.jade @@ -1,16 +1,8 @@ | {% extends 'attract/layout.html' %} | {% block page_title %}Shot {{ shot.name }}{% endblock %} | {% block body %} -#page-container - #page-header - .page-title - | Shot {{ shot.name }} - - #page-content - .page-triplet-container.homepage - .row - .col-md-8 - p this is a shot. - .col-md-4 - .well Task details here +#col_main + h1 Shot {{ shot.name }} +#col_right + h1 Right | {% endblock %}