members/excursion: select invoice for sjr application form
#103
Merged
christian.merten
merged 5 commits from MK/sjr_select_invoice into main 11 months ago
@ -0,0 +1,52 @@
|
|||||||||||||
|
{% extends "admin/base_site.html" %}
|
||||||||||||
|
{% load i18n admin_urls static %}
|
||||||||||||
|
|
||||||||||||
|
{% block extrahead %}
|
||||||||||||
|
{{ block.super }}
|
||||||||||||
|
{{ media }}
|
||||||||||||
|
<script src="{% static 'admin/js/cancel.js' %}" async></script>
|
||||||||||||
|
<script type="text/javascript" src="{% static "admin/js/vendor/jquery/jquery.js" %}"></script>
|
||||||||||||
|
<script type="text/javascript" src="{% static "admin/js/jquery.init.js" %}"></script>
|
||||||||||||
|
{% endblock %}
|
||||||||||||
|
|
||||||||||||
|
{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} invite-waiter
|
||||||||||||
|
{% endblock %}
|
||||||||||||
|
|
||||||||||||
|
{% block breadcrumbs %}
|
||||||||||||
|
<div class="breadcrumbs">
|
||||||||||||
|
<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a>
|
||||||||||||
|
› <a href="{% url 'admin:app_list' app_label=opts.app_label %}">{{ opts.app_config.verbose_name }}</a>
|
||||||||||||
|
› <a href="{% url opts|admin_urlname:'changelist' %}">{{ opts.verbose_name_plural|capfirst }}</a>
|
||||||||||||
|
› <a href="{% url opts|admin_urlname:'change' object.pk|admin_urlquote %}">{{ object|truncatewords:"18" }}</a>
|
||||||||||||
|
› {% translate 'Generate SJR application' %}
|
||||||||||||
|
</div>
|
||||||||||||
|
{% endblock %}
|
||||||||||||
|
|
||||||||||||
|
{% block content %}
|
||||||||||||
|
<p>
|
||||||||||||
|
{% blocktrans %}Here you can generate an allowance application for the SJR.{% endblocktrans %}
|
||||||||||||
|
|
|||||||||||||
|
</p>
|
||||||||||||
|
<p>
|
||||||||||||
|
{% blocktrans %}The application needs to be complemented with an invoice from the trip as proof.{% endblocktrans %}
|
||||||||||||
|
</p>
|
||||||||||||
|
|
||||||||||||
|
<form action="" method="post">
|
||||||||||||
|
{% csrf_token %}
|
||||||||||||
|
<p>
|
||||||||||||
|
<table>
|
||||||||||||
|
{{ form }}
|
||||||||||||
|
</table>
|
||||||||||||
|
</p>
|
||||||||||||
|
<p>
|
||||||||||||
|
{% blocktrans %}Please send this application form to the jdav finance officer via email.{% endblocktrans %}
|
||||||||||||
|
</p>
|
||||||||||||
|
<br>
|
||||||||||||
|
<input type="hidden" name="action" value="sjr_application">
|
||||||||||||
|
<input type="hidden" name="sjr_application">
|
||||||||||||
|
<input class="default" style="color: $default-link-color" type="submit" name="apply"
|
||||||||||||
|
value="{% translate 'Generate' %}">
|
||||||||||||
|
<a href="#" class="button cancel-link">{% translate "Cancel" %}</a>
|
||||||||||||
|
</form>
|
||||||||||||
|
|
||||||||||||
|
|
||||||||||||
|
{% endblock %}
|
||||||||||||
Loading…
Reference in New Issue
Hier fehlen noch Übersetzungen.