diff options
author | Filipp Lepalaan <f@230.to> | 2013-11-19 11:16:17 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-11-19 11:16:17 +0200 |
commit | 1c760af665e388f921b770d9c5c3ded1fc11f626 (patch) | |
tree | 7dede4db584eedaf525c5e3e42b14f9dd8e83a50 /templates/issues | |
parent | 297419f370ea87458017ee506a2e551e9068b66b (diff) | |
download | motor.old-1c760af665e388f921b770d9c5c3ded1fc11f626.tar.gz motor.old-1c760af665e388f921b770d9c5c3ded1fc11f626.tar.bz2 motor.old-1c760af665e388f921b770d9c5c3ded1fc11f626.zip |
Switching machines
Diffstat (limited to 'templates/issues')
-rw-r--r-- | templates/issues/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/issues/index.html b/templates/issues/index.html new file mode 100644 index 0000000..15b341f --- /dev/null +++ b/templates/issues/index.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html> + <head> + <title>{{ title }}</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <!-- Bootstrap --> + <link href="{{ STATIC_URL }}bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> + <link href="{{ STATIC_URL }}bootstrap/css/bootstrap-theme.min.css" rel="stylesheet" media="screen"> + <link href="{{ STATIC_URL }}css/signin.css" rel="stylesheet" media="screen"> + <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> + <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> + <!--[if lt IE 9]> + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> + <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> + <![endif]--> + </head> + <body style="padding-top:50px"> + <div class="container-fluid"> + {% block main %} + <h2>{{ question }}</h2> + {% for i in choices %} + <a class="btn btn-default" href="{% url 'issues-index' i.pk %}">{{ i.choice }}</a> + {% endfor %} + <blockquote>{{ dump }}</blockquote> + {% endblock main %} + </div><!-- /container --> + <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> + <script src="{{ STATIC_URL }}js/jquery.min.js"></script> + <!-- Include all compiled plugins (below), or include individual files as needed --> + <script src="{{ STATIC_URL }}bootstrap/js/bootstrap.min.js"></script> + </body> +</html> |