diff options
Diffstat (limited to 'templates/issues/index.html')
-rw-r--r-- | templates/issues/index.html | 41 |
1 files changed, 30 insertions, 11 deletions
diff --git a/templates/issues/index.html b/templates/issues/index.html index 70a84e7..eac766d 100644 --- a/templates/issues/index.html +++ b/templates/issues/index.html @@ -1,32 +1,51 @@ +{% load i18n %} <!DOCTYPE html> <html> - <head> +<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]--> + <style type="text/css"> + body { + padding-top: 20px; + } + .devices > div { + text-align: center; + } + .devices > div div { + padding: 10px; + } + label { + display: none; + } + </style> </head> <body> - <div class="container-fluid"> - {% block main %} - <h2>{{ question.question }}</h2> - {% for i in question.choice_set.all %} - <a class="btn btn-default" href="{% url 'issues-index' i.pk %}">{{ i.choice }}</a> - {% endfor %} - <blockquote>{{ dump }}</blockquote> - {% endblock main %} + <div class="container"> + <div class="navbar navbar-default" role="navbar"> + <ul class="nav navbar-nav"> + {% block nav %} + <li><a href="#">{% trans "Product" %}</a></li> + <li class="active"><a href="#">{% trans "Issue" %}</a></li> + <li><a href="#">{% trans "Your info" %}</a></li> + <li><a href="#">{% trans "Done" %}</a></li> + {% endblock nav %} + </ul> + </div> + {% block main %} + {% 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> + </body> </html> |