2013-07-15 20:35:41 +00:00
{% extends "basedocumentation.html" %}
{% block title %}Add new MARC records{% endblock %}
2013-07-17 14:34:01 +00:00
{% block extra_extra_head %}
{{ block.super }}
< link rel = "stylesheet" href = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/themes/ui-lightness/jquery-ui.css" type = "text/css" media = "screen" >
< link href = "/static/selectable/css/dj.selectable.css" type = "text/css" media = "all" rel = "stylesheet" / >
< script type = "text/javascript" src = "{{ jquery_ui_home }}" > < / script >
< script type = "text/javascript" src = "/static/selectable/js/jquery.dj.selectable.js" > < / script >
{% endblock %}
2013-07-15 20:35:41 +00:00
{% block doccontent %}
2013-07-17 17:03:35 +00:00
< h2 > Make your unglued MARC records here< / h2 >
< p >
For unglued ebooks which have existing print editions cataloged in the Library of Congress, we can automatically convert those to unglued ebook MARC records, which will then be automatically affixed to the ebook edition in our database and < a href = "{% url marc %}" > provided to ungluers< / a > .
< / p >
2013-07-15 20:35:41 +00:00
{% if messages %}
< ul class = "messages" >
{% for message in messages %}
< li { % if message . tags % } class = "{{ message.tags }}" { % endif % } > {{ message }}< / li >
{% endfor %}
< / ul >
{% endif %}
2013-07-16 15:42:17 +00:00
< form action = "" enctype = "multipart/form-data" method = "post" > {% csrf_token %}
2013-07-15 20:35:41 +00:00
{{ form.as_p }}
< input type = "submit" value = "Add record" / >
< / form >
{% endblock %}