File diff 4f071928d28a → ccaef7b2e339
pinaxcon/templates/dashboard.html
Show inline comments
...
 
@@ -13,6 +13,16 @@
 
{% block header_lead %}User Dashboard{% endblock %}
 
{% block main_class %}{% endblock %}
 

	
 
{% block alert %}
 
{% if user.attendee.completed_registration %}
 
<div class="row">
 
  <div class="col-12 bg-primary text-secondary p-3 content">
 
    <strong>Air New Zealand offer:</strong> Use <em>LCA2019</em> for a 5&#37; discount off all non-sale fare levels from Sydney, Melbourne, Brisbane, Gold Coast, Cairns, Adelaide and Perth through to Christchurch.
 
  </div>
 
</div>
 
{% endif %}
 
{% endblock %}
 

	
 
{% block content %}
 

	
 
{% available_categories as categories %}
...
 
@@ -20,10 +30,10 @@
 
  <h1 class="text-primary">Dashboard</h1>
 
</div>
 

	
 
{% if categories %} 
 
{% if categories %}
 
  {% include "symposion/dashboard/_categories.html" %}
 
{% endif %}
 
  
 

 

	
 
<div class="container mb-5">
 
  {% include "symposion/dashboard/speaking.html" %}
...
 
@@ -130,7 +140,7 @@
 
	<div class="col-12">
 
	    <div class="card-deck">
 
		{% for team in available_teams %}
 
		    {% include "symposion/teams/_team_row.html" %}  
 
		    {% include "symposion/teams/_team_row.html" %}
 
		{% endfor %}
 
	    </div>
 
	</div>
...
 
@@ -149,7 +159,7 @@
 
    function toggleVoidInvoices() {
 
      $btn = $("#toggle-void-invoices");
 
      $invoices = $(".void-invoice")
 
      
 

 
      if (visible) {
 
        $invoices.hide();
 
        btnText = "Show void invoices";