|
|
|
@@ -13,38 +13,39 @@ $def with (nav, project_bulk_one, project_bulk_two, projects, categories) |
|
|
|
|
|
|
|
<h1>Welcome $session.username!</h1> |
|
|
|
|
|
|
|
<img src="static/honeybee.png" alt="Honeybee"> |
|
|
|
|
|
|
|
$if session.username: |
|
|
|
|
|
|
|
<h3>What would you like to do today?</h3> |
|
|
|
|
|
|
|
<div id="user_projects"> |
|
|
|
<div class="user_projects_category" onclick="location.href='/?projects=my'">My Projects</div> |
|
|
|
<div class="user_projects_category" onclick="location.href='/?projects=customer'">Customer Projects</div> |
|
|
|
<div class="user_projects_category" onclick="location.href='/?projects=finished'">Finished Projects</div> |
|
|
|
<div id="dashboard"> |
|
|
|
<h3>What would you like to do today?</h3> |
|
|
|
|
|
|
|
<div id="user_projects"> |
|
|
|
<div class="user_projects_category" onclick="location.href='/?projects=my'">My Projects</div> |
|
|
|
<div class="user_projects_category" onclick="location.href='/?projects=customer'">Customer Projects</div> |
|
|
|
<div class="user_projects_category" onclick="location.href='/?projects=finished'">Finished Projects</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
$if projects == 'my': |
|
|
|
<h3>Your open projects</h3> |
|
|
|
$elif projects == 'customer': |
|
|
|
<h3>Customer projects in progress</h3> |
|
|
|
$elif projects == 'finished': |
|
|
|
<h3>My finished projects</h3> |
|
|
|
|
|
|
|
<div class="projects"> |
|
|
|
$for project in project_bulk_one: |
|
|
|
<div class="project" onclick="location.href='/project?projectid=$project[0]'"><h4>Title:    $project[3]</h4><p>Description: $project[4]</p><p>Category:   $categories[project[1]-1][1]</p></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
$if projects == 'my': |
|
|
|
<h3>Projects in progress</h3> |
|
|
|
$elif projects == 'finished': |
|
|
|
<h3>Finished customer projects</h3> |
|
|
|
|
|
|
|
<div class="projects"> |
|
|
|
$for project in project_bulk_two: |
|
|
|
<div class="project" onclick="location.href='/project?projectid=$project[0]'"><h4>Title:    $project[3]</h4><p>Description: $project[4]</p><p>Category:   $categories[project[1]-1][1]</p></div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
$if projects == 'my': |
|
|
|
<h3>Your open projects</h3> |
|
|
|
$elif projects == 'customer': |
|
|
|
<h3>Customer projects in progress</h3> |
|
|
|
$elif projects == 'finished': |
|
|
|
<h3>My finished projects</h3> |
|
|
|
|
|
|
|
<div class="projects"> |
|
|
|
$for project in project_bulk_one: |
|
|
|
<div class="project" onclick="location.href='/project?projectid=$project[0]'"><h4>Title:    $project[3]</h4><p>Description: $project[4]</p><p>Category:   $categories[project[1]-1][1]</p></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
$if projects == 'my': |
|
|
|
<h3>Projects in progress</h3> |
|
|
|
$elif projects == 'finished': |
|
|
|
<h3>Finished customer projects</h3> |
|
|
|
|
|
|
|
<div class="projects"> |
|
|
|
$for project in project_bulk_two: |
|
|
|
<div class="project" onclick="location.href='/project?projectid=$project[0]'"><h4>Title:    $project[3]</h4><p>Description: $project[4]</p><p>Category:   $categories[project[1]-1][1]</p></div> |
|
|
|
</div> |
|
|
|
<img src="static/honeybee.png" alt="Honeybee"> |
|
|
|
|
|
|
|
</body> |