2013-07-23 16:23:04 +00:00
|
|
|
{% extends "email_change/base.html" %}
|
|
|
|
|
|
|
|
{% block extra_extra_head %}
|
|
|
|
{{ block.super }}
|
|
|
|
<style type="text/css">
|
|
|
|
#login {
|
|
|
|
width: auto;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block title %}Change your MARC record preferences{% endblock %}
|
|
|
|
|
|
|
|
{% block ce_content %}
|
|
|
|
{% if messages %}
|
2013-07-24 18:52:01 +00:00
|
|
|
<ul class="errors">
|
2013-07-23 16:23:04 +00:00
|
|
|
{% for message in messages %}
|
|
|
|
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
Your current MARC record link target preference is:<br />
|
2013-07-25 14:25:14 +00:00
|
|
|
{{ request.user.profile.get_marc_link_target_display }}
|
2013-07-23 16:23:04 +00:00
|
|
|
<form method="post" action="{% url marc_config %}">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form }}
|
|
|
|
<br />
|
|
|
|
<input type="submit" value="Change" />
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|