Skip to content
Snippets Groups Projects
Unverified Commit 97d3e9df authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Implement view for person. Closes #10.

parent d706e835
No related branches found
No related tags found
1 merge request!4Add person view. Advances #10.
img.person-img {
max-height: 300px;
}
biscuit/core/static/img/fallback.png

18.7 KiB

from django.utils.translation import ugettext_lazy as _
import django_tables2 as tables
#from django_tables2.utils import A
from django_tables2.utils import A
class PersonsTable(tables.Table):
class Meta:
attrs = {'class': 'table table-striped table-bordered table-hover table-responsive-xl'}
first_name = tables.Column(verbose_name=_('First name'))
last_name = tables.Column(verbose_name=_('Last name'))
first_name = tables.LinkColumn('person_by_id', args=[A('id')])
last_name = tables.LinkColumn('person_by_id', args=[A('id')])
......@@ -5,8 +5,9 @@
{% block bootstrap4_title %}BiscuIT School Information System{% endblock %}
{% block bootstrap4_extra_head %}
{% fa_css %}
{% include_css "DataTables-Bootstrap4" %}
<link rel="stylesheet" href="{% static 'style.css' %}" />
<link rel="stylesheet" href="{% static 'css/style.css' %}" />
<link rel="shortcut icon" href="#" />
{% endblock %}
......
{% extends "core/base.html" %}
{% load bootstrap4 font_awesome i18n staticfiles %}
{% block content %}
<div class="col-sm-12 col-md-12">
{% if person %}
<h2>{{ person.first_name }} {{ person.last_name }}</h2>
<p>
<a href="{{ '#' }}">
{% blocktrans %}Edit person{% endblocktrans %}
</a>
</p>
<h3>{% blocktrans %}Contact details{% endblocktrans %}</h3>
<table class="table table-responsive-xl table-border table-striped">
<tr>
<td rowspan="6">
{% if person.photo %}
<img class="person-img" src="{{ person.photo.url }}" alt="{{ person.first_name }} {{ person.last_name }}" />
{% else %}
<img class="person-img" src="{% static 'img/fallback.png' %}" alt="{{ person.first_name }} {{ person.last_name }}" />
{% endif %}
</td>
<td>{% fa 'user' %}</td>
<td>{{ person.first_name }}</td>
<td>{{ person.additional_name }}</td>
<td>{{ person.last_name }}</td>
</tr>
<tr>
<td>{% fa 'venus-mars' %}</td>
<td colspan="3">{{ person.get_sex_display }}</td>
</tr>
<tr>
<td>{% fa 'fa-home' %}</td>
<td colspan="2">{{ person.street }} {{ person.housenumber }}</td>
<td colspan="2">{{ person.postal_code }} {{ person.place }}</td>
</tr>
<tr>
<td>{% fa 'phone-square' %}</td>
<td>{{ person.phone_number }}</td>
<td>{{ person.mobile_number }}</td>
</tr>
<tr>
<td>{% fa 'envelope' %}</td>
<td colspan="3">{{ person.email }}</td>
</tr>
<tr>
<td>{% fa 'gift' %}</td>
<td colspan="3">{{ person.date_of_birth|date }}</td>
</tr>
{% comment %}
<tr>
<td>{% fa 'graduation-cap' %}</td>
<td>Class</td>
<td>Teacher</td>
</tr>
{% endcomment %}
</table>
{# Will be implemted soon #}
<table class="table table-responsive-xl table-border table-striped">
<tr>
<td>Member</td>
<td>
<h4>Groups</h4>
<ul>
<li><a href="#">Foo</a></li>
<li><a href="#">Foo</a></li>
<li><a href="#">Foo</a></li>
<li><a href="#">Foo</a></li>
</td>
</tr>
</table>
{% else %}
<h2>{% blocktrans %}Person not found{% endblocktrans %}</h2>
<p>
{% blocktrans %}
There is no person with this id.
{% endblocktrans %}
</p>
{% endif %}
</div>
{% endblock %}
......@@ -10,6 +10,8 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('accounts/', include('django.contrib.auth.urls')),
path('persons', views.persons, name='persons'),
path('person', views.person, name='person'),
path('person/<int:id_>', views.person, name='person_by_id'),
path('', views.index, name='index'),
]
......
from django.contrib.auth.decorators import login_required
from django.shortcuts import render
from django.utils.translation import gettext as _
from django.http import Http404
from django.shortcuts import redirect, render
from django_tables2 import RequestConfig
from django.urls import reverse
from .models import Person
from .tables import PersonsTable
......@@ -21,3 +24,18 @@ def persons(request):
context['persons_table'] = persons_table
return render(request, 'core/persons.html', context)
@login_required
def person(request, id_):
context = {}
# Get person and check access
try:
person = Person.objects.get(pk=id_)
except Person.DoesNotExist as e:
# Turn not-found object into a 404 error
raise Http404 from e
context['person'] = person
return render(request, 'core/person.html', context)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment