forked from Linkuist/linkuist
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch bookmark submit page to class based view
Also add a simple template to allow going to home page or back where you came from, refs: Linkuist#15
- Loading branch information
Showing
3 changed files
with
52 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% extends "base.html" %} | ||
{% load i18n %} | ||
|
||
{% block title %} - Bookmark submission{% endblock title %} | ||
|
||
{% block container-fluid %} | ||
|
||
<div class="hero-unit"> | ||
<h1>Bookmark submitted</h1> | ||
<p> | ||
{% blocktrans %}Your bookmark has been submitted and will be processed shorlty.{% endblocktrans %} | ||
</p> | ||
<p> | ||
{%blocktrans %}Once processed, it will appear on your <a href="{% url "home" %}">Home page</a>. In the meantime, you may <a href="javascript:history.back()">go back</a> to where you came from to continue reading.{%endblocktrans %} | ||
</p> | ||
</div> | ||
|
||
{% endblock container-fluid %} |