Skip to content
Snippets Groups Projects

Resolve "Mark as payed on registration overview page"

Merged Tom Teichler requested to merge 31-mark-as-payed-on-registration-overview-page into master
4 files
+ 40
5
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -14,6 +14,7 @@
@@ -14,6 +14,7 @@
{% has_perm 'paweljong.delete_registration' user registration as can_delete_registration %}
{% has_perm 'paweljong.delete_registration' user registration as can_delete_registration %}
{% has_perm 'paweljong.send_notification_mail' user registration as can_send_notification %}
{% has_perm 'paweljong.send_notification_mail' user registration as can_send_notification %}
{% has_perm 'paweljong.can_retract_registration_rule' user registration as can_retract_registration %}
{% has_perm 'paweljong.can_retract_registration_rule' user registration as can_retract_registration %}
 
{% has_perm 'paweljong.mark_payment_payed_rule' user registration as can_mark_registration_payed %}
{% has_perm 'tezor.view_invoice_rule' user registration as can_view_invoice %}
{% has_perm 'tezor.view_invoice_rule' user registration as can_view_invoice %}
{% has_perm 'core.edit_person_rule' user person as can_change_person %}
{% has_perm 'core.edit_person_rule' user person as can_change_person %}
@@ -282,11 +283,7 @@
@@ -282,11 +283,7 @@
<i class="material-icons iconify" data-icon="{{ invoice.get_variant_icon }}"></i>
<i class="material-icons iconify" data-icon="{{ invoice.get_variant_icon }}"></i>
</td>
</td>
<td>
<td>
<select name="variant" disabled>
{{ invoice.variant }}
{% for choice in invoice.get_variant_choices %}
<option value="{{ choice.0 }}" {% if invoice.variant == choice.0 %}selected{% endif %}>{{ choice.1 }}</option>
{% endfor %}
</select>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
@@ -305,6 +302,16 @@
@@ -305,6 +302,16 @@
{{ invoice.due_date }}
{{ invoice.due_date }}
</td>
</td>
</tr>
</tr>
 
{% if can_mark_registration_payed and not invoice.status == "confirmed" %}
 
<tr>
 
<td>
 
<a href="{% url 'pay_registration_by_pk' registration.pk %}" class="btn waves-effect waves-light">
 
<i class="material-icons left iconify" data-icon="mdi:account-check"></i>
 
{% trans "Mark payed" %}
 
</a>
 
</td>
 
</tr>
 
{% endif %}
</table>
</table>
</div>
</div>
</div>
</div>
Loading