-
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.
- Loading branch information
1 parent
3f474b6
commit c7568f6
Showing
2 changed files
with
30 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
{% extends 'gopal/baseTemplate.html' %} | ||
{% block title %} | ||
Home | ||
{% endblock %} | ||
|
||
{% block body %} | ||
|
||
<div class="jumbotron mt-5 "> | ||
<h1 class="display-4 text-center">Welcome</h1> | ||
<p class="lead mt-5">The purpose in this project is digging out raw data of selling houses from this site. | ||
Then insert them into our local database and visualize them into our django-base website. | ||
And finally we are going to implement a learner agent that estimates price of houses by their features. | ||
By the way this project is going to be developed only for fun and learning purpose. Thanks to dear | ||
<a href="https://github.com/jadijadi/">Jadi</a> for this idea.</p> | ||
|
||
<hr class="my-4"> | ||
<p class="lead text-center"> | ||
<a class="btn btn-success" href="{% url "gopal:list" %}">See houses</a> | ||
<a class="btn btn-success" href="{% url "gopal:list" %}">Estimate price</a> | ||
</p> | ||
<hr class="mt-4"> | ||
<p class="lead">Developed by <a href="https://github.com/sajadkhosravani1"><b>Sajad Khosravani</b></a>.</p> | ||
</div> | ||
{% endblock %} |