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
...
 
@@ -9,39 +9,37 @@
 
{% 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>
...
 
@@ -231,26 +229,24 @@
 
        <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>
...
 
@@ -259,25 +255,24 @@
 
                  <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>
...
 
@@ -345,13 +340,13 @@
 
          $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>
0 comments (0 inline, 0 general)