added a blackboard
This commit is contained in:
16
fet2020/templates/blackboard/index.html
Normal file
16
fet2020/templates/blackboard/index.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends 'layout.html' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div class="grid-container">
|
||||
<h1>Blackboard</h1>
|
||||
|
||||
<!-- Tab panes -->
|
||||
<div class="tabs-content">
|
||||
{% for job in jobPostings %}
|
||||
{% include 'blackboard/partials/_jobPosting.html' %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
18
fet2020/templates/blackboard/partials/_jobPosting.html
Normal file
18
fet2020/templates/blackboard/partials/_jobPosting.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<div class="grid-x">
|
||||
<div class="medium-3 large-2 small-6 cell">
|
||||
<h2>{{job.companyName}}</h2>
|
||||
<p>{{job.jobName}}<br>
|
||||
Mindestgehalt: {{job.salary}}€</p>
|
||||
{# only thumb and name of member #}
|
||||
<a class="thumbnail member-thumb" href="{{job.pdfLocation.url}}" style="width:200px;height:300px">
|
||||
<img src="{{job.pdf_thumb_location}}" alt="" />
|
||||
<div class="thumb-layer">
|
||||
<div>
|
||||
<h1>{{job.companyName}}</h1>
|
||||
<p>{{job.jobName}} <br>
|
||||
Mindestgehalt: {{job.salary}}€</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -29,6 +29,7 @@
|
||||
{% endif %}
|
||||
<li class=""><a href="{%url 'home'%}">Aktuelles</a> </li>
|
||||
<li class=""><a href="/fotos">Fotos</a> </li>
|
||||
<li class=""><a href="/blackboard">Blackboard</a> </li>
|
||||
<li class=""><a href="{%url 'members'%}">Mitarbeiter</a> </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user