diff options
-rw-r--r-- | gstudio/templates/gstudio/label_list.html | 16 | ||||
-rw-r--r-- | gstudio/templates/gstudio/skeleton.html | 20 |
2 files changed, 22 insertions, 14 deletions
diff --git a/gstudio/templates/gstudio/label_list.html b/gstudio/templates/gstudio/label_list.html new file mode 100644 index 00000000..33afde50 --- /dev/null +++ b/gstudio/templates/gstudio/label_list.html @@ -0,0 +1,16 @@ +<html> +<head> +<h> List of Nodes </h> +<br> +</head> + +<body> +<div> +<ul> +{% for item in lis %} + <li><a href="{{ item.get_absolute_url }}" >{{ item.title }}</a></li> +{% endfor %} +</ul> +</div> +</body> +</html> diff --git a/gstudio/templates/gstudio/skeleton.html b/gstudio/templates/gstudio/skeleton.html index c99bab9e..a5c6f997 100644 --- a/gstudio/templates/gstudio/skeleton.html +++ b/gstudio/templates/gstudio/skeleton.html @@ -193,14 +193,6 @@ --> <script type="text/javascript" > - //alert(s) - //if ( parseInt(s) > 0 ){ - - // } -// else{ - // var w = 700, - // h = 300, - // } function init(a,b) { @@ -246,14 +238,14 @@ function load(key) if (s > 0 ){ var a = 50 * s; - var w = 700; - var p = 100 + "%"; - var h = 620; + var w = 1000; + var p = 140 + "%"; + var h = 650; var q = 3 * s + 75 + "%"; }else{ - var w = 700; - var p = 100 + "%"; - var h = 620; + var w = 1000; + var p = 140 + "%"; + var h = 650; var q = 110 + "%"; } fill = d3.scale.category20(); |