File diff 1f04ec0cea73 → 5256aeeda337
pinaxcon/templates/dashboard.html
Show inline comments
...
 
@@ -11,18 +11,19 @@
 

	
 
{% block header_title %}linux.conf.au 2019{% endblock %}
 
{% block header_lead %}User Dashboard{% endblock %}
 

	
 
{% block main_class %}{% endblock %}
 

	
 
{% block content %}
 

	
 
{% available_categories as categories %}
 
<div class="container">
 
<h1 class="text-primary mb-5">Dashboard</h1>
 
</div>
 
{% if categories %} 
 

	
 
{% if user.is_staff %}
 
<div class="container">
 
        <div class="page-header">
 
  <h2>Administration</h2>
 
        </div>
 
  <div class="page-row">
 
    <div class="col-xs-12">
 
      <a class="btn btn-lg btn-info" role="button" href="{% url "reports_list" %}">Reports</a>
...
 
@@ -170,43 +171,47 @@
 
  {% endif %}
 
  
 

	
 
<div class="container">
 
<div class="row">
 
    <div class="col-12">
 
      <h2>{% trans "Speaking and Miniconfs" %}</h2>
 
        <div class="card">
 
            <div class="card-header">
 
                Speaker Profile
 
              </div>
 
            <div class="card-body">
 
              <p class="card-text">
 
                  Your speaker profile is independent of your attendee profile and the details you provide here will be used during selection and to populate your speaker bio on the conference website.
 
      <h2 class="text-primary mb-5">{% trans "Speaking and Miniconfs" %}</h2>
 
    </div>
 
</div>
 
  
 
<div class="row">
 
    <div class="col-md-6 text-primary d-flex flex-column">
 
      <h3 class="text-upper">Speaker Profile</h3>
 
      {% if not user.speaker_profile %}
 
      <p>
 
        To create a speaking or miniconf proposal you must first create a speaker 
 
        profile.
 
      </p>
 
      {% endif %}
 
      <p>
 
        Your speaker profile is independent of your attendee profile and the 
 
        details you provide here will be used during selection and to populate 
 
        your speaker bio on the conference website.
 
      </p>
 
      <div class="mt-auto">
 
        {% if not user.speaker_profile %}
 
                <p class="card-text">To create a speaking or miniconf proposal you must first create a speaker profile.</p>
 
                <a href="{% url "speaker_create" %}" class="btn btn-primary">Create Profile</a>
 
        <a href="{% url "speaker_create" %}" class="btn btn-primary btn-lg" role="button">Create Profile</a>
 
        {% else %}
 
                <a class="btn btn-primary" role="button" href="{% url "speaker_edit" %}">Edit Profile</a>
 
        <a href="{% url "speaker_edit" %}" class="btn btn-primary btn-lg" role="button">Edit Profile</a>
 
        {% endif %}
 
      </div>
 
    </div>
 
    
 

	
 
    {% if user.speaker_profile %}
 
        <div class="col-xs-12 col-sm-6 col-lg-6">
 
          <div class="panel panel-primary">
 
            <div class="panel-heading">
 
              <h5>New Proposal</h5>
 
            </div>
 
            <div class="panel-body">
 
    <div class="col-md-6 text-primary d-flex flex-column">
 
      <h3 class="text-upper">New Proposal</h3>
 
      <p>You may use the following form to create a speaking or miniconf proposal.</p>
 
      <p>Once submitted you will be able to see the status of your proposals, as well manage the submission and co-speakers from this page</p>
 
              <a class="btn btn-lg btn-primary pull-right" role="button" href="{% url "proposal_submit" %}">New Proposal</a>
 
            </div>
 
      <div class="mt-auto">
 
        <a class="btn btn-lg btn-primary" role="button" href="{% url "proposal_submit" %}">New Proposal</a>
 
      </div>
 
    </div>
 
    {% endif %}
 
</div>
 

	
 
</div>
 

	
 

	
...
 
@@ -248,26 +253,22 @@
 
{% endif %}
 
{% endif %}
 

	
 
  {% if review_sections %}
 
<div class="bg-primary text-secondary mt-5 pb-5">
 
<div class="container">
 
      <div class="page-header">
 
        <h2>{% trans "Reviews" %}</h2>
 
      </div>
 
      <div class="page-row">
 

	
 
{% if review_sections %}
 
<div class="row">
 
  <h2 class="col-12 my-5">{% trans "Reviews" %}</h2>
 
  {% for section in review_sections %}
 
          <div class="col-xs-12 col-sm-6 col-lg-6">
 
            <div class="panel panel-primary">
 
              <div class="panel-heading">
 
                <h5>{{ section }}</h5>
 
              </div>
 
              <div class="panel-body">
 
                <ul>
 
  <div class="col-md-6">
 
    <h3>{{ section }}</h3>
 
          <ul class="list-unstyled">
 
            <li><a href="{% url "review_section" section.section.slug %}">All</a></li>
 
            <li><a href="{% url "user_reviewed" section.section.slug %}">Reviewed by you</a></li>
 
            <li><a href="{% url "user_not_reviewed" section.section.slug %}">Not Reviewed by you</a></li>
 
          </ul>
 
          {% if section in manage_sections %}
 
                <ul>
 
          <ul class="list-unstyled">
 
            <li><a href="{% url "review_bulk_update" section.section.slug %}">Bulk Update</a></li>
 
            <li><a href="{% url "result_notification" section.section.slug "accepted" %}">Send notifications</a></li>
 
            <li><a href="{% url "review_status" section.section.slug %}">Voting Status</a></li>
...
 
@@ -275,13 +276,11 @@
 
          </ul>
 
          {% endif %}
 
  </div>
 
            </div>
 
          </div>
 
  {% endfor %}
 
</div>
 
    </div>
 
{% endif %}
 

	
 
</div>
 
</div>
 
{% available_teams as available_teams %}
 
{% if user.memberships.exists or available_teams %}
 
<div class="container">