Skip to content
Snippets Groups Projects
dashboard.html 2.36 KiB
Newer Older
<%! from django.core.urlresolvers import reverse %>
Matthew Mongeau's avatar
Matthew Mongeau committed
<%inherit file="main.html" />

<%namespace name='static' file='static_content.html'/>

<section class="container dashboard">
Matthew Mongeau's avatar
Matthew Mongeau committed

  <section class="profile-sidebar">
    <header class="profile">
      <h1 class="user-name">${ user.username }</h1>
      <section class="user-info">
            <span class="title"><div class="icon email-icon"></div>Email</span><span class="data">${ user.email }</span>
            <span class="title"><div class="icon location-icon"></div>Location</span><span class="data">${ user.profile.location }</span>
            <span class="title"><div class="icon language-icon"></div>Language</span><span class="data">${ user.profile.language }</span>
      </section>
    </header>
  </section>
Matthew Mongeau's avatar
Matthew Mongeau committed

  <section class="my-courses">
    <header>
      <h2>Current Courses</h2>
Matthew Mongeau's avatar
Matthew Mongeau committed

    % if len(courses) > 0:
      % for course in courses:
        <article class="my-course">
          <a href="${reverse('info', args=[course.id])}" class="cover" style="background-image: url('static/images/courses/python.png')">
            <div class="shade"></div>
            <div class="arrow"></div>
          </a>
          <section class="info">
            <hgroup>
              <a href="#" class="university">${course.get_about_section('university')}</a>
              <h3><a href="${reverse('info', args=[course.id])}">${course.get_about_section("title")}</a></h3>
              <p>Class Starts - <span>9/2/2012</span></div>
              <div class="progress">
                <div class="meter">
                  <div class="meter-fill"></div>
              </div>
              <div class="complete">
                <p><span class="completeness">60%</span> compleat</p>
              </div>
      % endfor
    % else:
      <section class="empty-dashboard-message">
        <p>Looks like you haven't registered for any courses yet.</p>
        <a href="${reverse('courses')}">Find courses now!</a>
Matthew Mongeau's avatar
Matthew Mongeau committed

  </section>
</section>