Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

certification and certification faq pages #208

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions foundation/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@
{"label": "Contribute", "url": "/contribute"}
], "right":1},
{"label": "Services", "child_items":[
{"label": "Certification", "url": "/certification"},
{"label": "Service Providers", "url": "/service-providers"},
{"label": "Certified Consultants", "url": "/certified_consultants"},
{"label": "Freelancer Jobs", "url": "/erpnext-jobs"},
{"label": "Become a Service Provider", "url": "/faq"}
], "right":1},
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions foundation/www/certification-faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<section class='section-padding text-center'>
<h1>Get Certified By ERPNext Foundation</h1>
<p class='lead'>
Are you interested in attaining ERPNext certification? Here are answers to some of the frquently asked questions.
</p>
</section>

<h4>What skills does the certification validate?</h4>

Successful completion of ERPNext certification ensures that you’re able to adeptly perform the following tasks

<ul>
<li>Setting up the system</li>

<li>Configuration</li>

<li>Customizations</li>

<li>Data import</li>
</ul>

<h4>What is the process?</h4>

<ul>
<li>Session will last for 90 minutes</li>

<li>ERPNext Foundation authorized examiner will conduct the session</li>

<li>You will be provided with an instance of ERPNext</li>

<li>Test will involve 20 tasks with 5 points each</li>

<li>Passing score is 70</li>
</ul>

Successful candidates will receive the certificate by email and will also be listed on the foundation website.

<h4>For what period certificatation is valid?</h4>

The certification will be valid for 3 years.

<h4>What is the certification price?</h4>

Certification price shall be 300 USD/ 20,000 INR.

<h4>When can I take the exam?</h4>

The certification exam will be conducted on the first working day of every month.

<h4>If I do not score the required passing score, will I get another chance?</h4>

Yes. You will get one additional chance.

<br>

<div class='mt-4 text-center'>
<a class='mt-2 btn-dark btn-sm btn' href="/contact?subject=Certification">Contact Us If You Have Any Further Queries</a>
</div>
28 changes: 28 additions & 0 deletions foundation/www/certification.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<section class='top-section'>
<h1>ERPNext Certification</h1>
<p class='lead'>
Validate your expertise and improve your skills.
</p>
<img class='greyscale' src='/assets/foundation/img/certification/certification.png' style='width:550px;height:275px;'>
<br>
</section>

<section class='section-padding'>
<div class='text-center'>
<h4>Why Get Certified?</h4>
<p>ERPNext is a free and open source software. Anyone can provide services around ERPNext.
Certification sends a strong signal about your expertise to clients looking for ERPNext services.
<br>
<br>
If you are a developer or a consultant driving the digital transformation by helping clients adopt ERPNext, certification is for you.</p>
</div>

<div class='text-center'>
<p class='mt-5'>
<a href="/payment_setup_certification" class="btn btn-dark">Get Certified</a>
</p>
<p>
<a href="/certification-faq" class='text-muted'>Certification FAQ</a>
</p>
</div>
</section>
52 changes: 52 additions & 0 deletions foundation/www/certified_consultants.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{% extends "templates/base.html" %}

{% from "templates/includes/media.html" import media %}

{% block title %}ERPNext Foundation Fellows{% endblock %}
{% block content %}

<section class='top-section'>
<div class='container'>
<h1>Certified Consultants</h1>
<p class='lead'>
ERPNext Foundation certified consultants go through a rigorous certification process and are qualified to provide professional services around ERPNext.
</p>
</div>
</section>
<section class='section-padding section-bg'>
<div class='container'>
<h2 class='text-center'>Meet the Certified Consultants</h2>
<div class='row'>
{% for consultant in all_consultants %}
<div class='col-sm-4 mb-4'>
<div class='card h-100'>
<a href='{{ consultant.website_url }}' target='_blank'>
<img class="card-img-top greyscale"
src="{{ consultant.image }}" alt="{{ consultant.name_of_consultant }}">
</a>
<div class="card-body">
<h5>
{{ consultant.name_of_consultant }}
</h5>
<div>
<a class='btn-sm btn-secondary mr-2'
href='https://github.com/{{ consultant.github_id }}'
target='_blank'>
<i class='octicon octicon-mark-github'></i></a>
<a class='btn-sm btn-secondary'
href='https://discuss.erpnext.com/u/{{ consultant.discuss_id }}'
target='_blank'>
<i class='fa fa-comments'></i>
</a>
</div>
</div>
<div class="card-footer">
<a href='{{ consultant.website_url }}' class='text-muted small'>{{ consultant.website_url }}</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% endblock %}
13 changes: 13 additions & 0 deletions foundation/www/certified_consultants.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import frappe
import foundation

no_cache = 1

def get_context(context):
'''Returns all certified consultants'''
all_consultants = {}
all_consultants = frappe.get_all('Certified Consultant',
fields=['website_url', 'image', 'name_of_consultant', 'github_id', 'discuss_id'],
filters={ 'show_in_website': 1}, as_dict=True)

context.all_consultants = all_consultants