Eventplanner: Grid / Translation
This commit is contained in:
@@ -1,15 +1,37 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% extends "website/base.html" %}
|
||||
|
||||
{% load crispy_forms_tags %}
|
||||
|
||||
|
||||
<!-- No Feature slider -->
|
||||
{% block feature_slider %}
|
||||
{% endblock %}
|
||||
|
||||
|
||||
<!-- Static Navbar at top -->
|
||||
{% block navbar_options %} navbar navbar-inverse navbar-static-top {% endblock %}
|
||||
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
{% crispy form %}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<h3>{{user.first_name}} {{user.last_name}}</h3>
|
||||
<div class="span6">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{{ form }}
|
||||
<br>
|
||||
<input type="submit" class="btn btn-primary" value="Abschicken"></input>
|
||||
</form>
|
||||
</div>
|
||||
<div class="span6">
|
||||
<img src="{{MEDIA_URL}}/user_images/{{user.username}}.png"></img>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<form action="/musicians/martin" method="post">
|
||||
{% csrf_token %}
|
||||
{{ form.as_p|crispy }}
|
||||
<input type="submit" value="Submit" />
|
||||
</form> -->
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user