2013-10-24 21:27:15 +02:00
|
|
|
{% extends "form_base.html" %}
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
|
|
{% block form_title %}{% trans "RFID"%}{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block form_description %}
|
2013-10-25 19:35:32 +02:00
|
|
|
<p>{% blocktrans %}A Radio Frequency Identification (RFID) tag can be used
|
|
|
|
|
to announce your presence to other c-base members when you arrive.
|
|
|
|
|
Place your RFID tag on the RFID reader in the airlock terminal.
|
|
|
|
|
If you configured your RFID correctly, the airlock terminal will greet
|
|
|
|
|
you and show additional information. If you place your RFID tag in the
|
|
|
|
|
reader again when leaving, you will be logged out.{% endblocktrans %}</p>
|
2013-10-24 21:27:15 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block form_fields %}
|
|
|
|
|
{{ form.non_field_errors }}
|
2015-09-29 21:34:54 +02:00
|
|
|
<form action="{% url 'rfid' %}" method="post"
|
2013-10-25 19:35:32 +02:00
|
|
|
class="form-horizontal well">
|
2013-10-24 21:27:15 +02:00
|
|
|
{% csrf_token %}
|
|
|
|
|
{{ form|crispy }}
|
|
|
|
|
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<button type="submit" class="btn btn-primary">Speichern</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
{% endblock form_fields %}
|