summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/NewSection1.html
blob: daf29bc8cf26832fe1831fb846134d0fd6b8c9c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

{% extends "gstudio/base.html" %}
{% block content %}
<script src="http://code.jquery.com/jquery-latest.js"></script>
    <script type="text/javascript" >
      $(window).load(function() {
      $("#save").hide();});
</script>
<h1>Add a new Section</h1>
{% if errors %}
<ul>
{% for error in errors %}
<li><font color="red">{{ error }} </font></li>
{% endfor %}
</ul>
{% endif %}

<form action="" method="post">{% csrf_token %}
<p>Title: <input type="text" name="subject"></p>
<textarea name="page" id="pagecontent" rows="10" cols="50" style="display:none;"></textarea></p>
<p><textarea name="org" id="orgpage" rows="10" cols="50" style="display:none;"></textarea></p>
</br></br>

<input type="button" id="addcontent" name="content" value="Add Content"/>
<input type="button" name="savepage" id="save" value="Save Page"></p></br>
<input type="hidden" value={{pageid}} id="sectionid">
<input type="hidden" value={{user.id}} name = "idusr">
<input type="submit" id="submitsec" value="Submit" style="display:none;"/>
</form>

{% endblock %}