summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/window.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-04-10 14:12:18 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-04-24 19:42:35 +0200
commita9e2b04477c968db7d4e255a2755523fd9bf9527 (patch)
treefef7928af296fc1e5005c101c6426af7bcf12ae6 /ishtar_common/templates/window.html
parent38c9a7b344940126627a799a64880be47a71f925 (diff)
downloadIshtar-a9e2b04477c968db7d4e255a2755523fd9bf9527.tar.bz2
Ishtar-a9e2b04477c968db7d4e255a2755523fd9bf9527.zip
Popup: BS style - Container: improve creation form
- prevent container creation when the same reference exists - autocopy reference to location
Diffstat (limited to 'ishtar_common/templates/window.html')
-rw-r--r--ishtar_common/templates/window.html51
1 files changed, 31 insertions, 20 deletions
diff --git a/ishtar_common/templates/window.html b/ishtar_common/templates/window.html
index dcb4d4084..dc94b4aae 100644
--- a/ishtar_common/templates/window.html
+++ b/ishtar_common/templates/window.html
@@ -12,36 +12,47 @@
</script>
<script language="javascript" type="text/javascript" src="{{JQUERY_URL}}?ver={{VERSION}}"></script>
<script language="javascript" type="text/javascript" src="{{JQUERY_UI_URL}}jquery-ui.js?ver={{VERSION}}"></script>
+ <script language="javascript" type="text/javascript" src="{{STATIC_URL}}bootstrap/bootstrap.js?ver={{VERSION}}"></script>
<script language="javascript" type="text/javascript" src="{{STATIC_URL}}js/chosen/chosen.jquery.min.js?ver={{VERSION}}"></script>
<script language="javascript" type="text/javascript" src="{{STATIC_URL}}js/ishtar.js?ver={{VERSION}}"></script>
{{form.media}}
- <link type="text/css" href="{{JQUERY_UI_URL}}jquery-ui.css?ver={{VERSION}}" rel="stylesheet" />
+ <link rel="stylesheet" href="{{STATIC_URL}}bootstrap/bootstrap.css?ver={{VERSION}}">
<link type="text/css" href="{{STATIC_URL}}js/chosen/chosen.min.css?ver={{VERSION}}" rel="stylesheet" />
- <link rel="stylesheet" href="{{STATIC_URL}}media/style.css?ver={{VERSION}}" />
+ <link rel="stylesheet" href="{{STATIC_URL}}media/styles.css?ver={{VERSION}}" />
{% block extra_head %}
{% endblock %}
</head>
-<body>
-{% if new_item_label %}
+<body class="window-pop">
+<div class="modal-content">
+ <div class="modal-header">
+ <h2>{{title}}</h2>
+ </div>
+
+ <form action="." method="post" class='form'>{% csrf_token %}
+ <div class="modal-body body-scroll">
+ <div class="form">
+ {% include "blocks/bs_form_snippet.html" %}
+ </div>
+ </div>
+
+ <div class="modal-footer">
+ <input type="submit" class="btn btn-primary" id="submit_new_item"
+ value="{% trans 'Add' %}"/>
+ <button type="button" id="cancel-btn" class="btn btn-secondary">
+ {% trans 'Cancel' %}</button>
+ </div>
+
+
+ </form>
+</div>
<script type='text/javascript' language='javascript'>
+{% if new_item_label %}
save_and_close_window{% if many %}_many{% endif %}("{{parent_name}}", "{{parent_pk}}", "{{new_item_label|safe}}", "{{new_item_pk}}");
-</script>
{% endif %}
-<div id="window_content">
- <h3>{{title}}</h3>
- <form action="." method="post" class='form'>{% csrf_token %}
- <table>
- {% for field in form %}
- <tr{% if field.field.required %} class='required'{% endif %}>
- <th>{{ field.label_tag }}</th>
- <td>{{ field.errors }}{{field|safe}}</td>
- </tr>{% endfor %}
- <tr><td colspan='2' class='submit_button'><input type="submit" id="submit_new_item" value="{% trans "Add" %}"/></td></tr>
- </table>
- </form>
- </div>
+$("#cancel-btn").click(function(){
+ close();
+});
+</script>
-</div>
</body>
-
</html>