INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
{% extends 'admin/master.html' %} | |
{% import 'admin/lib.html' as lib with context %} | |
{% block body %} | |
{% call lib.form_tag() %} | |
{{ lib.render_form_fields(form) }} | |
<input type="submit" /> | |
{% endcall %} | |
{% endblock %} |
# | |
# If, for example, you've accidentally made some commits to master | |
# that should be on a feature branch, this set of commands will | |
# move those commits over to a feature branch and reset master to | |
# where it should be both locally and on the remote. | |
# | |
# References: | |
# | |
# - http://stackoverflow.com/questions/1628563/move-recent-commit-to-a-new-branch | |
# - http://stackoverflow.com/questions/1377845/git-reset-hard-and-a-remote-repository |