Changeset - 2d5443be89ce
[Not reviewed]
0 1 0
Tobias Schulmann - 6 years ago 2018-06-24 01:21:52
tobias.schulmann@googlemail.com
Hide green row when no reviews available
1 file changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/dashboard.html
Show inline comments
...
 
@@ -244,28 +244,27 @@
 
  <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 %}
 

	
 
{% if review_sections %}
 
<div class="bg-primary text-secondary mt-5 pb-5">
 
<div class="container">
 

	
 
{% if review_sections %}
 
<div class="row">
 
  <h2 class="col-12 my-5">{% trans "Reviews" %}</h2>
 
  {% for section in review_sections %}
 
  <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 class="list-unstyled">
0 comments (0 inline, 0 general)