Boot custom CSS, and put some base, standard css in its place. Shame I did not start with fresh Bootstrap4, but oh well. Some more templates could be made to make this less messy, which would be good.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			572 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			572 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "symposion/proposals/base.html" %}
 | 
						|
 | 
						|
{% load bootstrap %}
 | 
						|
 | 
						|
{% block page_title %}Upload Document to '{{ proposal.title }}'{% endblock %}
 | 
						|
 | 
						|
{% block proposals_body %}
 | 
						|
    <form class="form-horizontal" method="POST" action="" enctype="multipart/form-data" class="form form-horizontal">
 | 
						|
        {% csrf_token %}
 | 
						|
        <fieldset>
 | 
						|
          {% include "_form_snippet.html" with form=form %}
 | 
						|
          <div class="btn-group">
 | 
						|
              <input class="btn btn-primary" type="submit" value="Upload" />
 | 
						|
          </div>
 | 
						|
        </fieldset>
 | 
						|
    </form>
 | 
						|
{% endblock %}
 |