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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
{% extends "base.html" %}
{% load django_tables2 %}
{% load static %}
{% load i18n %}
{% block extrahead %}
<link href="file:///usr/share/javascript/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="{% static 'django_tables2/bootstrap.css' %}" rel="stylesheet" />
{% endblock %}
{% block body %}
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">django-tables2</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<form method="post" action="{% url 'set_language' %}" class="navbar-form navbar-left">
{% csrf_token %}
<div class="form-group">
<select name="language" class="form-control">
{% get_current_language as LANGUAGE_CODE %}
{% get_available_languages as LANGUAGES %}
{% get_language_info_list for LANGUAGES as languages %}
{% for language in languages %}
<option value="{{ language.code }}"{% if language.code == LANGUAGE_CODE %} selected{% endif %}>
{{ language.name_local }} ({{ language.code }})
</option>
{% endfor %}
</select>
</div>
<input type="submit" value="set language" class="btn btn-default" />
</form>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container">
<h1>Some examples of using django-tables2</h1>
<p>
Welcome to the django-tables2 example project.
Below is a list of different examples using django-tables2.
</p>
<ul>
{% for url, text in urls %}
<li><a href="{{ url }}">{{ text }}</a></li>
{% endfor %}
</ul>
<h2>Basic example of a table</h2>
{% render_table table "django_tables2/bootstrap.html" %}
<div class="row">
<h2>Same table, but responsive (<code>.table-responsive</code>)</h2>
<div class="col-sm-12">
{% render_table table "django_tables2/bootstrap-responsive.html" %}
</div>
</div>
</div>
{% endblock %}
|