Changeset - e562b61521c0
[Not reviewed]
0 3 0
Sachi King - 7 years ago 2017-04-25 05:59:35
nakato@nakato.io
Template cleanup of base dir templates
2 files changed with 1 insertions and 11 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/dashboard.html
Show inline comments
 
{% extends "utility_page.html" %}
 
{% load staticfiles %}
 
{% load i18n %}
 
{% load proposal_tags %}
 
{% load review_tags %}
 
{% load teams_tags %}
 
{% load registrasion_tags %}
 
{% load pyconau2017_tags %}
 
{% load staticfiles %}
 

	
 

	
 
{% block header_title %}Dashboard{% endblock %}
 

	
 

	
 
{% block content %}
 

	
 
  <div>
 
    {% available_categories as categories %}
 
    {% if categories %}
 

	
 

	
 
      {% if user.is_staff %}
 
      <div class="container">
 
        <div class="page-header">
 
          <h1>Administration</h1>
 
        </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>
 
          </div>
 
        </div>
 
      </div>
 
      {% endif %}
 

	
 

	
 
    <div class="container">
 
      <div class="page-header">
 
        <h1>{% trans "Attend" %} {% conference_name %}</h1>
 
      </div>
 
      <div class="page-row">
 
        {% if not user.attendee.completed_registration %}
 
          <div class="panel panel-default">
 
            <div class="panel-heading">
 
              <h4>Register</h4>
 
            </div>
 
            <div class="panel-body">
 
              <p>To attend the conference, you must register an attendee profile and purchase your ticket</p>
 
              <a class="btn btn-lg btn-primary" role="button" href="{% url "guided_registration" %}">Get your ticket</a>
 
            </div>
 
          </div>
 
        {% else %}
 
          <div class="col-xs-12 col-sm-6 col-lg-6">
 
            <div class="panel panel-default">
 
              <div class="panel-heading">
 
                <h4>Attendee Profile</h4>
 
              </div>
 
              <div class="panel-body">
 
                <p>If you would like to change the details on your badge or your attendee statistics, you may edit your attendee profile up until the weekend before the conference</p>
 
                <a class="btn btn-lg btn-primary pull-right" role="button" href="{% url "attendee_edit" %}">Edit attendee profile</a>
...
 
@@ -219,77 +217,74 @@
 
    {% endif %}
 
  {% endif %}
 

	
 

	
 
  {% if user.speaker_profile %}
 
    {% associated_proposals as associated_proposals %}
 
    {% pending_proposals as pending_proposals %}
 
    {% if associated_proposals or pending_proposals %}
 
      <div class="container">
 
        <div class="page-header">
 
          <h2>Copresenter Proposals</h2>
 
        </div>
 
        <div class="page-row">
 
        {% for proposal in associated_proposals %}
 
          {% include "symposion/proposals/_proposal_row.html" %}
 
        {% endfor %}
 
        {% for proposal in pending_proposals %}
 
          {% include "symposion/proposals/_pending_proposal_row.html" %}
 
        {% endfor %}
 
        </div>
 
      </div>
 
    {% endif %}
 
  {% endif %}
 

	
 
{# {% include 'registrasion/dashboard-widget.html' %} #}
 

	
 
  {% if review_sections %}
 
    <div class="container">
 
      <div class="page-header">
 
        <h2>{% trans "Reviews" %}</h2>
 
      </div>
 
      <div class="page-row">
 
        {% 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>
 
                  <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>
 
              </div>
 
            </div>
 
          </div>
 
        {% endfor %}
 
      </div>
 
    </div>
 
  {% endif %}
 

	
 

	
 
  {% available_teams as available_teams %}
 
  {% if user.memberships.exists or available_teams %}
 
    <div class="container">
 
      <div class="page-header">
 
        <h2>{% trans "Teams" %}</h2>
 
      </div>
 
    </div>
 
    <div class="container">
 
      <div class="page-row">
 
        {% if user.memberships.exists %}
 
          <div class="page-header">
 
            <h3>Your Teams</h3>
 
          </div>
 
          <div clas="page-row">
 
            {% for membership in user.memberships.all %}
 
              <div class="col-xs-12 col-sm-6 col-lg-6">
 
                <div class="panel panel-primary">
 
                  <div class="panel-heading">
 
                    <h5>{{ membership.team.name }}</h5>
 
                  </div>
 
                  <div class="panel-body">
 
                    {% if membership.team.description %}<p>{{ membership.team.description }}</p>{% endif %}
 
                    <a class="btn btn-lg btn-primary" role="button" href="{% url "team_detail" membership.team.slug %}">Details</a>
 
                    <span class="{% if membership.state == 'invited' %} label-info{% endif %}">{{ membership.get_state_display }}</span>
...
 
@@ -333,25 +328,25 @@
 
{% block scripts_extra %}
 
  <script type="text/javascript">
 
    function _toggleVoidInvoices() {
 
      var visible = false;
 
      function toggleVoidInvoices() {
 
        $btn = $("#toggle-void-invoices");
 
        $invoices = $(".void-invoice")
 

	
 
        if (visible) {
 
          $invoices.hide();
 
          btnText = "Show void invoices";
 
        } else {
 
          $invoices.show();
 
          btnText = "Hide void invoices";
 
        }
 
        $btn.text(btnText);
 
        visible = !visible;
 
        return true;
 
      }
 
      return toggleVoidInvoices;
 
    }
 
    var toggleVoidInvoices = _toggleVoidInvoices();
 
    _toggleVoidInvoices() = undefined;
 
  </script>
 
{% endblock %}  <!-- scripts_extra -->
 
{% endblock %}
pinaxcon/templates/utility_page.html
Show inline comments
 
{% extends "content_page.html" %}
 
{% load staticfiles %}
 

	
 
{% comment %}
 
{% block header_background_image %}{% static 'pyconau2017/images/wineglass_bg_optimised.jpg' %}{% endblock %}
 
{% endcomment %}
 

	
 
{% block header_title %}{% block page_title %}{% endblock %}{% endblock %}
 
{% block header_inset_image_base %}{% endblock %}
 

	
 
{% block content_base %}
 
  {% block utility_body_outer %}
 
    <div class="l-content-page">
 
      <div class="l-content-page--richtext">
 
        {% block content %}
 
          <div class="jumbotron">
 
            {% block utility_body %}
 
            {% endblock %}
 
          </div>
 
        {% endblock content %}
 
      </div>
 
    </div>
 
  {% endblock %}
 
{% endblock %}
0 comments (0 inline, 0 general)