mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
Users can now add programming language and percentage to the project. ### TODO - [ ] Allow users to add multiple languages
15 lines
404 B
HTML
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 %}
|