Skip to content

Commit

Permalink
Merge pull request sehmaschine#24 from djkartsa/master
Browse files Browse the repository at this point in the history
Added breadcrumbs to pop-ups.
  • Loading branch information
smacker committed Mar 4, 2016
2 parents 15b40b8 + a119c31 commit 83d3713
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions filebrowser/templates/filebrowser/createdir.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
<!-- CONTENT -->
{% block content %}
<div id="content-main">
<!-- POP-UP BREADCRUMBS -->
{% if query.pop %}
{% include "filebrowser/include/breadcrumbs.html" %}
{% endif %}
<form action="{% query_string '' 'p' %}" method="post">{% fb_csrf_token %}
<div>
{% if form.errors %}<p class="errornote">{% trans 'Please correct the following errors.' %}</p>{% endif %}
Expand Down
4 changes: 4 additions & 0 deletions filebrowser/templates/filebrowser/delete_confirm.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

<!-- CONTENT -->
{% block content %}
<!-- POP-UP BREADCRUMBS -->
{% if query.pop %}
{% include "filebrowser/include/breadcrumbs.html" %}
{% endif %}
<p>{% blocktrans with fileobject.filename as escaped_object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"? All of the following related items will be deleted:{% endblocktrans %}</p>

<ul>
Expand Down
4 changes: 4 additions & 0 deletions filebrowser/templates/filebrowser/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
<!-- CONTENT -->
{% block content %}
<div id="content-main">
<!-- POP-UP BREADCRUMBS -->
{% if query.pop %}
{% include "filebrowser/include/breadcrumbs.html" %}
{% endif %}
<form action="{% query_string "" "filter_date,filter_type,q,p" %}" method="post">{% csrf_token %}
<div>
{% if form.errors %}<p class="errornote">{% trans 'Please correct the following errors.' %}</p>{% endif %}
Expand Down
5 changes: 5 additions & 0 deletions filebrowser/templates/filebrowser/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@
<!-- CONTENT -->
{% block content %}
<div id="content-main">
<!-- POP-UP BREADCRUMBS -->
{% if query.pop %}
{% include "filebrowser/include/breadcrumbs.html" %}
{% endif %}

<!-- OBJECT-TOOLS -->
{% block object-tools %}
<ul class="object-tools">
Expand Down
4 changes: 4 additions & 0 deletions filebrowser/templates/filebrowser/upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@
<!-- CONTENT -->
{% block content %}
<div id="content-main">
<!-- POP-UP BREADCRUMBS -->
{% if query.pop %}
{% include "filebrowser/include/breadcrumbs.html" %}
{% endif %}
<form>
<div>
<fieldset class="module aligned">
Expand Down

0 comments on commit 83d3713

Please sign in to comment.