FOSSDB/templates/fossdb/add_project.html
Kristofers Solo d3931e52aa Added ProgrammingLanguage input field
Users can now add programming language and percentage to the project.

### TODO
- [ ] Allow users to add multiple languages
2023-06-26 14:01:17 +00:00

15 lines
404 B
HTML

{% extends "layout.html" %}
{% load static %}
{% block title %}{{ title }}{% endblock %}
{% block meta %}{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ project_form.as_p }}
{{ hosting_platform_form.as_table }}
<br />
{{ programming_language_form.as_table }}
<button type="submit">Submit</button>
</form>
{% endblock %}